mirror of
https://github.com/codex-storage/deluge.git
synced 2025-02-18 14:26:24 +00:00
Stop update timer before shutting down.
This commit is contained in:
parent
8b6a14403f
commit
67347e67b6
@ -83,7 +83,7 @@ class MainWindow:
|
|||||||
|
|
||||||
def start(self):
|
def start(self):
|
||||||
"""Start the update thread and show the window"""
|
"""Start the update thread and show the window"""
|
||||||
gobject.timeout_add(1000, self.update)
|
self.update_timer = gobject.timeout_add(1000, self.update)
|
||||||
self.show()
|
self.show()
|
||||||
|
|
||||||
def update(self):
|
def update(self):
|
||||||
@ -113,6 +113,8 @@ class MainWindow:
|
|||||||
return self.window.get_property("visible")
|
return self.window.get_property("visible")
|
||||||
|
|
||||||
def quit(self):
|
def quit(self):
|
||||||
|
# Stop the update timer from running
|
||||||
|
gobject.source_remove(self.update_timer)
|
||||||
del self.menubar
|
del self.menubar
|
||||||
del self.toolbar
|
del self.toolbar
|
||||||
del self.torrentview
|
del self.torrentview
|
||||||
|
Loading…
x
Reference in New Issue
Block a user