mirror of
https://git.deluge-torrent.org/deluge
synced 2025-08-04 15:38:43 +00:00
Fix high cpu usage when displaying speeds in titlebar
This commit is contained in:
parent
2048c7b33f
commit
ab846039d1
2 changed files with 5 additions and 1 deletions
|
@ -1,6 +1,10 @@
|
||||||
=== Deluge 1.1.8 - (In Development) ===
|
=== Deluge 1.1.8 - (In Development) ===
|
||||||
|
==== Core ====
|
||||||
* Fix pause all/resume all
|
* Fix pause all/resume all
|
||||||
|
|
||||||
|
==== GtkUI ====
|
||||||
|
* Fix high cpu usage when displaying speeds in titlebar
|
||||||
|
|
||||||
=== Deluge 1.1.7 - (25 April 2009) ===
|
=== Deluge 1.1.7 - (25 April 2009) ===
|
||||||
==== Core ====
|
==== Core ====
|
||||||
* Fix issue where cannot resume torrent after doing a 'Pause All'
|
* Fix issue where cannot resume torrent after doing a 'Pause All'
|
||||||
|
|
|
@ -55,7 +55,7 @@ from deluge.log import LOG as log
|
||||||
|
|
||||||
class MainWindow(component.Component):
|
class MainWindow(component.Component):
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
component.Component.__init__(self, "MainWindow", interval=2)
|
component.Component.__init__(self, "MainWindow", interval=2000)
|
||||||
self.config = ConfigManager("gtkui.conf")
|
self.config = ConfigManager("gtkui.conf")
|
||||||
# Get the glade file for the main window
|
# Get the glade file for the main window
|
||||||
self.main_glade = gtk.glade.XML(
|
self.main_glade = gtk.glade.XML(
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue