From c9f5d3138e2fff1ab1a1e0abdb809751158efc0a Mon Sep 17 00:00:00 2001 From: mgrojo Date: Thu, 14 Nov 2019 23:57:59 +0100 Subject: [PATCH] Show status message when saving to project file Otherwise, there isn't any feedback about the file having been saved. See issue #1706 --- src/MainWindow.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/MainWindow.cpp b/src/MainWindow.cpp index 65f1cfdd..5941dcb0 100644 --- a/src/MainWindow.cpp +++ b/src/MainWindow.cpp @@ -2824,6 +2824,7 @@ void MainWindow::saveProject(const QString& currentFilename) addToRecentFilesMenu(filename); setCurrentFile(db.currentFile()); isProjectModified = false; + showStatusMessage5s(tr("Project saved to file '%1'").arg(currentProjectFilename)); QApplication::restoreOverrideCursor(); } }