diff options
author | René 'Necoro' Neumann <necoro@necoro.net> | 2008-03-25 14:45:12 +0100 |
---|---|---|
committer | René 'Necoro' Neumann <necoro@necoro.net> | 2008-03-25 14:45:12 +0100 |
commit | 5e87c5be785d3f9c49aa4f9306bad42864858aa0 (patch) | |
tree | 7fb5eb1645d3cd0a555de7a69a00a1d88003b5e2 /portato/gui/windows/main.py | |
parent | e411f14c8dfa9fc6fd3bbf521d63c7154006045d (diff) | |
download | portato-5e87c5be785d3f9c49aa4f9306bad42864858aa0.tar.gz portato-5e87c5be785d3f9c49aa4f9306bad42864858aa0.tar.bz2 portato-5e87c5be785d3f9c49aa4f9306bad42864858aa0.zip |
Added option to disable console title update
Diffstat (limited to '')
-rw-r--r-- | portato/gui/windows/main.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/portato/gui/windows/main.py b/portato/gui/windows/main.py index 7ddd868..e841cb4 100644 --- a/portato/gui/windows/main.py +++ b/portato/gui/windows/main.py @@ -1118,7 +1118,7 @@ class MainWindow (Window): self.tray.set_tooltip(title) window_title_update(title) - if title is None: + if title is None or not self.cfg.get_boolean("updateConsole", "GUI"): title = _("Console") else: title = ("%s (%s)") % (_("Console"), title) |