From 1cc9184593ab16f7e0a022941049023f3ce24c11 Mon Sep 17 00:00:00 2001 From: Nikos Kouremenos Date: Mon, 25 Sep 2006 19:12:12 +0000 Subject: [PATCH] until GTK and PyGTK 2.10 exist for Windows disable trayicon. When they exist, we are going to use the GTK API only for WINDOWS as it does not support animation [which is C R A Z Y but true] and we have and NEED animation in GNU/Linux --- src/gajim.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/gajim.py b/src/gajim.py index 7ec3d75a0..1b55fc88d 100755 --- a/src/gajim.py +++ b/src/gajim.py @@ -1915,6 +1915,8 @@ class Interface: self.systray_capabilities = False if os.name == 'nt': + pass + ''' try: import systraywin32 except: # user doesn't have trayicon capabilities @@ -1922,6 +1924,7 @@ class Interface: else: self.systray_capabilities = True self.systray = systraywin32.SystrayWin32() + ''' else: self.systray_capabilities = systray.HAS_SYSTRAY_CAPABILITIES if self.systray_capabilities: