diff options
author | necoro <> | 2007-08-06 01:05:42 +0000 |
---|---|---|
committer | necoro <> | 2007-08-06 01:05:42 +0000 |
commit | 02652967805e1b30be1f55b73cfc50fc2ac4bbe6 (patch) | |
tree | d92c242797e0e36095a81af43a1a277a28c69715 /portato/gui | |
parent | 27fcaa18fbcca7ee1292c299239f0cb047412beb (diff) | |
download | portato-02652967805e1b30be1f55b73cfc50fc2ac4bbe6.tar.gz portato-02652967805e1b30be1f55b73cfc50fc2ac4bbe6.tar.bz2 portato-02652967805e1b30be1f55b73cfc50fc2ac4bbe6.zip |
small fixes
Diffstat (limited to 'portato/gui')
-rw-r--r-- | portato/gui/gtk/windows.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/portato/gui/gtk/windows.py b/portato/gui/gtk/windows.py index 2cba5b2..c1789bd 100644 --- a/portato/gui/gtk/windows.py +++ b/portato/gui/gtk/windows.py @@ -1165,10 +1165,10 @@ class MainWindow (Window): else: title = (_("Console (%(title)s)") % {"title" : title}) - return False - self.notebook.set_tab_label_text(self.termHB, title) + return False + gobject.idle_add(__update, title) def cb_cat_list_selection (self, view): |