From 18bc4fb5206d73096bf78028a1fac754539585f0 Mon Sep 17 00:00:00 2001 From: "Veronica K. B. Olsen" <1619840+vkbo@users.noreply.github.com> Date: Sun, 8 Nov 2020 00:41:04 +0100 Subject: [PATCH] Clarify the dialog messages when closing a project or novelWriter --- nw/guimain.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/nw/guimain.py b/nw/guimain.py index bfca4255..4a7c6b1d 100644 --- a/nw/guimain.py +++ b/nw/guimain.py @@ -316,7 +316,8 @@ class GuiMain(QMainWindow): if not isYes: msgBox = QMessageBox() msgRes = msgBox.question( - self, "Close Project", "Save changes and close the current project?" + self, "Close Project", + "Close the current project?
Changes are saved automatically." ) if msgRes != QMessageBox.Yes: return False @@ -988,7 +989,8 @@ class GuiMain(QMainWindow): if self.hasProject: msgBox = QMessageBox() msgRes = msgBox.question( - self, "Exit", "Do you want to save changes and exit?" + self, "Exit", + "Do you want to exit novelWriter?
Changes are saved automatically." ) if msgRes != QMessageBox.Yes: return False