Remove pointless '+0.5' from update timer.
This commit is contained in:
parent
3b2d205866
commit
7ac3421e31
@ -1056,7 +1056,7 @@ window, please enter your password"))
|
|||||||
# Call update now so everything is up-to-date when the window gains
|
# Call update now so everything is up-to-date when the window gains
|
||||||
# focus on startup
|
# focus on startup
|
||||||
self.update()
|
self.update()
|
||||||
gobject.timeout_add(int(1000*self.manager.config.get("gui_update_interval")+0.5), self.update)
|
gobject.timeout_add(int(1000*self.manager.config.get("gui_update_interval")), self.update)
|
||||||
|
|
||||||
# Load plugins after we showed main window (if not started in tray)
|
# Load plugins after we showed main window (if not started in tray)
|
||||||
self.load_plugins()
|
self.load_plugins()
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user