Minor change for output in status bar.

This commit is contained in:
Gerhard Hoffmann 2023-08-23 16:27:47 +02:00
parent 1509e8619c
commit be28570d23

View File

@ -226,5 +226,5 @@ void MainWindow::onReplaceLast(QString text, QString suffix) {
void MainWindow::onShowErrorMessage(QString title, QString text) {
this->statusBar()->clearMessage();
this->statusBar()->showMessage( // timeout: 10000
QString(title + ": " + text).leftJustified(80, ' '), 10000);
QString(title + " " + text).leftJustified(80, ' '), 10000);
}