Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dev.gajim.org/gajim/gajim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYann Leboulanger <asterix@lagaule.org>2009-11-24 16:33:49 +0300
committerYann Leboulanger <asterix@lagaule.org>2009-11-24 16:33:49 +0300
commiteb11c24eea6b367d1774cfa8ae3b38c03e72085a (patch)
treea109da606e2794cdbd33f5792506ccb669f7af44 /src/tooltips.py
parent94f6d6b79ac357c98ec6d3089f891ec5d78968e4 (diff)
egg.trayicon is dead. Light a candle :'(
Fixes #3021, #5246
Diffstat (limited to 'src/tooltips.py')
-rw-r--r--src/tooltips.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tooltips.py b/src/tooltips.py
index 847e6a17a..5e55166c0 100644
--- a/src/tooltips.py
+++ b/src/tooltips.py
@@ -269,7 +269,7 @@ class NotificationAreaTooltip(BaseTooltip, StatusTable):
for line in acct['event_lines']:
self.add_text_row(' ' + line, 1)
- def populate(self, data):
+ def populate(self, data=''):
self.create_window()
self.create_table()
@@ -280,7 +280,7 @@ class NotificationAreaTooltip(BaseTooltip, StatusTable):
self.table.set_property('column-spacing', 1)
self.hbox.add(self.table)
- self.win.add(self.hbox)
+ self.hbox.show_all()
class GCTooltip(BaseTooltip):
''' Tooltip that is shown in the GC treeview '''