mirror of
https://github.com/codex-storage/deluge.git
synced 2025-02-17 13:56:47 +00:00
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
|
||||
# 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()
|
||||
|
Loading…
x
Reference in New Issue
Block a user