From f517d2deefd95c8fbb2cfa8aad387ccd4bd5d342 Mon Sep 17 00:00:00 2001 From: Dan Smith Date: Tue, 27 Jun 2023 19:55:57 -0700 Subject: [PATCH] Update window title after save-as When multiple window support was added, we had to show the file of the currently-selected tab in the title bar so you can tell the windows apart in the task list. This needs to be updated after a save-as operation so it doesn't remain incorrect. Related to #10634 --- chirp/wxui/main.py | 1 + 1 file changed, 1 insertion(+) diff --git a/chirp/wxui/main.py b/chirp/wxui/main.py index de6358537..719fafd2c 100644 --- a/chirp/wxui/main.py +++ b/chirp/wxui/main.py @@ -1245,6 +1245,7 @@ def _menu_save_as(self, event): eset.save(filename) self.adj_menu_open_recent(filename) self._update_editorset_title(eset) + self._update_window_for_editor() return True def _menu_save(self, event):