From 2737236f48a605101694b3018f6605bd9f7fe522 Mon Sep 17 00:00:00 2001 From: Yann Leboulanger Date: Thu, 12 May 2005 21:46:44 +0000 Subject: [PATCH] 30 sec -> 15 sec of delay before showing notification windows --- src/gajim.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gajim.py b/src/gajim.py index 1f3bde11d..e9cd44f5b 100755 --- a/src/gajim.py +++ b/src/gajim.py @@ -160,7 +160,7 @@ class Interface: def handle_event_status(self, account, status): # OUR status #('STATUS', account, status) if status != 'offline': - gobject.timeout_add(30000, self.allow_notif, account) + gobject.timeout_add(15000, self.allow_notif, account) self.roster.on_status_changed(account, status) def handle_event_notify(self, account, array):