From 7a5f072d3f01730077f9032a6ff8e8a8eb869831 Mon Sep 17 00:00:00 2001 From: Marius Stanciu Date: Wed, 25 Nov 2020 14:30:53 +0200 Subject: [PATCH] - added confirmation status messages for clearing the recent files/projects lists --- CHANGELOG.md | 1 + app_Main.py | 2 ++ 2 files changed, 3 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index fcfdbaab..36c16983 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -15,6 +15,7 @@ CHANGELOG for FlatCAM beta - fixed an error in Geo Editor when trying to save an empty Geometry - in Preferences made sure that clicking the Restore Defaults will update the values in the Preferences Tab - some changes in the Tools visibility in the Tools ToolBar +- added confirmation status messages for clearing the recent files/projects lists 24.11.2020 diff --git a/app_Main.py b/app_Main.py index 7355e1e7..1dda6f57 100644 --- a/app_Main.py +++ b/app_Main.py @@ -7568,6 +7568,7 @@ class App(QtCore.QObject): return json.dump(self.recent, ff) + self.inform.emit('%s' % _("Recent files list was reset.")) def reset_recent_projects(): # Reset menu @@ -7581,6 +7582,7 @@ class App(QtCore.QObject): return json.dump(self.recent, frp) + self.inform.emit('%s' % _("Recent projects list was reset.")) # Reset menu self.ui.recent.clear()