[sgala] check autoaway state only every 10 seconds, so that gajim allows for processors to sleep longer for power saving (see linuxpowertop.org)

This commit is contained in:
Yann Leboulanger 2007-06-06 09:57:33 +00:00
parent 3ba415dfea
commit 5ca32ba606
1 changed files with 1 additions and 1 deletions

View File

@ -2393,7 +2393,7 @@ class Interface:
gobject.timeout_add(100, self.autoconnect)
gobject.timeout_add(200, self.process_connections)
gobject.timeout_add(500, self.read_sleepy)
gobject.timeout_add(10000, self.read_sleepy)
if __name__ == '__main__':
def sigint_cb(num, stack):