From e9945b9c4bd530f26ef314020ce6c35a8984a102 Mon Sep 17 00:00:00 2001 From: Nikos Kouremenos Date: Thu, 18 Aug 2005 22:08:19 +0000 Subject: [PATCH] disable trayicon if in windows (fixes the resize problem) apparently --- src/gajim.py | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/gajim.py b/src/gajim.py index cb5985229..efaf12a03 100755 --- a/src/gajim.py +++ b/src/gajim.py @@ -1130,14 +1130,14 @@ class Interface: self.systray_enabled = False self.systray_capabilities = False - if os.name == 'nt': - try: - import systraywin32 - except: # user doesn't have trayicon capabilities - pass - else: - self.systray_capabilities = True - self.systray = systraywin32.SystrayWin32(self) + if False: #os.name == 'nt': + #try: + # import systraywin32 + #except: # user doesn't have trayicon capabilities + # pass + #else: + # self.systray_capabilities = True + # self.systray = systraywin32.SystrayWin32(self) else: try: import egg.trayicon # use gnomepythonextras trayicon