diff -r 98645c8e7704 -r cd6704009eb9 src/mainwindow.cpp --- a/src/mainwindow.cpp Thu Feb 06 20:33:05 2020 +0200 +++ b/src/mainwindow.cpp Thu Feb 06 23:41:20 2020 +0200 @@ -172,6 +172,10 @@ { Document* document = new Document{this->documents.findModelByName(modelName), &this->documents, this->colorTable}; document->setRenderPreferences(this->renderPreferences); + connect(document, &Document::newStatusText, [&](const QString& newStatusText) + { + this->statusBar()->showMessage(newStatusText); + }); this->ui->tabs->addTab(document, modelName); this->ui->tabs->setCurrentWidget(document); document->restoreSplitterState(this->documentSplitterState);