summaryrefslogtreecommitdiff
path: root/portato/gui/windows/main.py
diff options
context:
space:
mode:
authorRené 'Necoro' Neumann <necoro@necoro.net>2008-03-25 14:45:12 +0100
committerRené 'Necoro' Neumann <necoro@necoro.net>2008-03-25 14:45:12 +0100
commit5e87c5be785d3f9c49aa4f9306bad42864858aa0 (patch)
tree7fb5eb1645d3cd0a555de7a69a00a1d88003b5e2 /portato/gui/windows/main.py
parente411f14c8dfa9fc6fd3bbf521d63c7154006045d (diff)
downloadportato-5e87c5be785d3f9c49aa4f9306bad42864858aa0.tar.gz
portato-5e87c5be785d3f9c49aa4f9306bad42864858aa0.tar.bz2
portato-5e87c5be785d3f9c49aa4f9306bad42864858aa0.zip
Added option to disable console title update
Diffstat (limited to 'portato/gui/windows/main.py')
-rw-r--r--portato/gui/windows/main.py2
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)