Remove pointless '+0.5' from update timer.

This commit is contained in:
Andrew Resch 2007-12-29 05:37:21 +00:00
parent 3b2d205866
commit 7ac3421e31

View File

@ -1056,7 +1056,7 @@ window, please enter your password"))
# Call update now so everything is up-to-date when the window gains
# focus on startup
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)
self.load_plugins()