From 7c496001356b7f650be327e5ea6a456ef11aba5a Mon Sep 17 00:00:00 2001 From: Yann Leboulanger Date: Thu, 14 Feb 2008 19:18:07 +0000 Subject: use timeout_add_seconds instead of timeout_add (when it's available), more efficient. fixes #3734, #3736 --- src/profile_window.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/profile_window.py') diff --git a/src/profile_window.py b/src/profile_window.py index 8fa581d49..61ffcc19d 100644 --- a/src/profile_window.py +++ b/src/profile_window.py @@ -248,7 +248,7 @@ class ProfileWindow: self.statusbar.remove(self.context_id, self.message_id) self.message_id = self.statusbar.push(self.context_id, _('Information received')) - self.remove_statusbar_timeout_id = gobject.timeout_add(3000, + self.remove_statusbar_timeout_id = gobject.timeout_add_seconds(3, self.remove_statusbar, self.message_id) gobject.source_remove(self.update_progressbar_timeout_id) self.progressbar.hide() @@ -344,7 +344,7 @@ class ProfileWindow: self.statusbar.remove(self.context_id, self.message_id) self.message_id = self.statusbar.push(self.context_id, _('Information NOT published')) - self.remove_statusbar_timeout_id = gobject.timeout_add(3000, + self.remove_statusbar_timeout_id = gobject.timeout_add_seconds(3, self.remove_statusbar, self.message_id) if self.update_progressbar_timeout_id is not None: gobject.source_remove(self.update_progressbar_timeout_id) -- cgit v1.2.3