diff options
author | Papoteur <papoteur@mageia.org> | 2023-01-25 21:44:34 +0100 |
---|---|---|
committer | Papoteur <papoteur@mageia.org> | 2023-01-25 21:44:34 +0100 |
commit | 48f33df91b3ace809d6398e84de5f0fc7ce5df90 (patch) | |
tree | 8fd9d43c2de4fe1264de218b0371d41caa56c4aa | |
parent | e711651c754a7c5ef5d4b72c68006924197bd0ea (diff) | |
download | isodumper-48f33df91b3ace809d6398e84de5f0fc7ce5df90.tar isodumper-48f33df91b3ace809d6398e84de5f0fc7ce5df90.tar.gz isodumper-48f33df91b3ace809d6398e84de5f0fc7ce5df90.tar.bz2 isodumper-48f33df91b3ace809d6398e84de5f0fc7ce5df90.tar.xz isodumper-48f33df91b3ace809d6398e84de5f0fc7ce5df90.zip |
fix display of window title
-rwxr-xr-x | lib/isodumper.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/isodumper.py b/lib/isodumper.py index 4cff6ce..b83dad4 100755 --- a/lib/isodumper.py +++ b/lib/isodumper.py @@ -1176,6 +1176,9 @@ exFAT, NTFS or ext. You can specify a volume name and the format in a new dialog def run(self, debug=False): + self.backupTitle = yui.YUI.app().applicationTitle() + yui.YUI.app().setApplicationTitle(self._title) + self._setupUI() # setting to False will break the event loop self._running = True @@ -1188,6 +1191,8 @@ exFAT, NTFS or ext. You can specify a volume name and the format in a new dialog traceback.print_exc() yui.YDialog.deleteAllDialogs() # Closing + #restore old application title + yui.YUI.app().setApplicationTitle(self.backupTitle) self.dialog.destroy() self.dialog = None if yui.YUI.app().isTextMode(): |