From 1d4eb1aadb0bf400b484985357b6847ff63a76c1 Mon Sep 17 00:00:00 2001 From: Nikos Kouremenos Date: Tue, 15 Mar 2005 17:43:41 +0000 Subject: [PATCH] we've got a beta tester :P --- plugins/gtkgui/systray.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/plugins/gtkgui/systray.py b/plugins/gtkgui/systray.py index 6081ecd9f..54b639fdf 100644 --- a/plugins/gtkgui/systray.py +++ b/plugins/gtkgui/systray.py @@ -175,13 +175,14 @@ class systray: if event.type == gtk.gdk.BUTTON_PRESS and event.button == 1: if len(self.jids) == 0: win = self.plugin.roster.window + print 'before', win.is_active() if win.is_active(): win.iconify() win.skip_taskbar_hint = True else: win.present() win.skip_taskbar_hint = False - print win.is_active() + print 'after', win.is_active() else: account = self.jids[0][0] jid = self.jids[0][1]