remove a windows GTK workarround. it's fixed in gtk2.12.3 (maybe before too)

This commit is contained in:
Yann Leboulanger 2007-12-13 01:13:51 +00:00
parent 228f7597c0
commit 762f80cbd2
1 changed files with 1 additions and 2 deletions

View File

@ -22,7 +22,6 @@
import sys import sys
import gtk import gtk
import systray import systray
import gobject
from common import gajim from common import gajim
from common import helpers from common import helpers
@ -60,7 +59,7 @@ class StatusIcon(systray.Systray):
self.unsubscribe_events() self.unsubscribe_events()
def on_status_icon_left_clicked(self, widget): def on_status_icon_left_clicked(self, widget):
gobject.idle_add(self.on_left_click) self.on_left_click()
def set_img(self): def set_img(self):
'''apart from image, we also update tooltip text here''' '''apart from image, we also update tooltip text here'''