Show
Ignore:
Timestamp:
02/13/08 08:14:06 (9 months ago)
Author:
asterix
Message:

[Goedson] use timeout_add_seconds instead of timeout_add, more efficient. fixes #3734

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/src/roster_window.py

    r9305 r9324  
    56215621                        st = gajim.config.get('set_status_msg_from_current_music_track') 
    56225622                        if st: 
    5623                                 gobject.timeout_add(1000, 
     5623                                gobject.timeout_add_seconds(1, 
    56245624                                        self.enable_syncing_status_msg_from_current_music_track, st) 
    56255625                        else: 
    5626                                 gobject.timeout_add(1000, 
     5626                                gobject.timeout_add_seconds(1, 
    56275627                                        self.enable_syncing_status_msg_from_lastfm, 
    56285628                                        gajim.config.get('set_status_msg_from_lastfm'))