mirror of
https://git.deluge-torrent.org/deluge
synced 2025-04-21 20:14:51 +00:00
Remove pointless '+0.5' from update timer.
This commit is contained in:
parent
3b2d205866
commit
7ac3421e31
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Reference in a new issue