diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/gui_qt.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gui_qt.cc b/src/gui_qt.cc index 76611e4..0223291 100644 --- a/src/gui_qt.cc +++ b/src/gui_qt.cc @@ -1255,6 +1255,7 @@ protected: int row = 0; if (!text_.empty()) { auto text = new QLabel(QString::fromStdString(text_)); + text->setWordWrap(true); layout->addWidget(text, row++, 0, 1, 3); } for (auto& value : values_) { @@ -1796,6 +1797,7 @@ private: dialog_->setWindowTitle(QString::fromStdString(title_)); auto layout = new QVBoxLayout(); auto text = new QLabel(QString::fromStdString(text_)); + text->setWordWrap(true); layout->addWidget(text); layout->addWidget(progress_); dialog_->setLayout(layout); |
