Question

I am trying to get the text from a text edit and store it in a QString .

When I write this

QString text = ui->textEdit->toPlainText();

it only reads the text before the first '\n' So how can I get the whole text with '\n's in it.

This is being called from a slot like this: -

void MainWindow::on_pushButton_clicked() 
{ 
    QString text = ui->textEdit->toPlainText(); 
    ui->label_2->setText(text); 
}
Was it helpful?

Solution

Turning my comment into an answer

Make sure that the label is high enough to actually display multi-line text.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top