Fix displaying new release dialog in Windows
This commit is contained in:
parent
89c9228cec
commit
79c78fa7ef
@ -20,6 +20,7 @@
|
||||
|
||||
==== Windows ====
|
||||
* Fix displaying folders in the add torrent dialog
|
||||
* Fix displaying the new release dialog
|
||||
|
||||
==== Blocklist ====
|
||||
* Fix blocklist status icon not opening the blocklist preference
|
||||
|
||||
@ -238,8 +238,9 @@ class MainWindow(component.Component):
|
||||
|
||||
def on_newversionavailable_event(self, new_version):
|
||||
if self.config["show_new_releases"]:
|
||||
from twisted.internet import reactor
|
||||
from deluge.ui.gtkui.new_release_dialog import NewReleaseDialog
|
||||
NewReleaseDialog().show(new_version)
|
||||
reactor.callLater(5.0, NewReleaseDialog().show, new_version)
|
||||
|
||||
def on_torrentfinished_event(self, torrent_id):
|
||||
from deluge.ui.gtkui.notification import Notification
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user