Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dev.gajim.org/gajim/gajim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYann Leboulanger <asterix@lagaule.org>2008-02-13 10:14:06 +0300
committerYann Leboulanger <asterix@lagaule.org>2008-02-13 10:14:06 +0300
commitad3935d9e9c4db7ae62dd1fcd13275fbaadbb4ba (patch)
treeb8c5894508f1a9659d2863035d33df3e0854f302 /src/profile_window.py
parentfd9d9011739508685a3ac90e9e32865dd0c19948 (diff)
[Goedson] use timeout_add_seconds instead of timeout_add, more efficient. fixes #3734
Diffstat (limited to 'src/profile_window.py')
-rw-r--r--src/profile_window.py4
1 files changed, 2 insertions, 2 deletions
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)