mirror of
https://git.deluge-torrent.org/deluge
synced 2025-08-04 15:38:43 +00:00
Fix not showing new torrents if you don't use the All label first
This commit is contained in:
parent
26fc7cf13f
commit
165b97751d
3 changed files with 3 additions and 0 deletions
|
@ -7,6 +7,7 @@ Deluge 0.9.07 - "1.0.0_RC7" (In Development)
|
||||||
* Add 'edit' to edit trackers dialog
|
* Add 'edit' to edit trackers dialog
|
||||||
* Improve performance of initial torrent list load
|
* Improve performance of initial torrent list load
|
||||||
* Fix hiding the bottom pane when disabling all the tabs
|
* Fix hiding the bottom pane when disabling all the tabs
|
||||||
|
* Fix not showing new torrents if you don't use the All label first
|
||||||
|
|
||||||
Windows:
|
Windows:
|
||||||
* Fix Vista slowness issue
|
* Fix Vista slowness issue
|
||||||
|
|
|
@ -90,6 +90,7 @@ class Signals(component.Component):
|
||||||
log.debug("torrent id: %s", torrent_id)
|
log.debug("torrent id: %s", torrent_id)
|
||||||
# Add the torrent to the treeview
|
# Add the torrent to the treeview
|
||||||
component.get("TorrentView").add_row(torrent_id)
|
component.get("TorrentView").add_row(torrent_id)
|
||||||
|
component.get("TorrentView").mark_dirty(torrent_id)
|
||||||
|
|
||||||
def torrent_removed_signal(self, torrent_id):
|
def torrent_removed_signal(self, torrent_id):
|
||||||
log.debug("torrent_remove signal received..")
|
log.debug("torrent_remove signal received..")
|
||||||
|
|
|
@ -206,6 +206,7 @@ class TorrentView(listview.ListView, component.Component):
|
||||||
def _on_session_state(self, state):
|
def _on_session_state(self, state):
|
||||||
for torrent_id in state:
|
for torrent_id in state:
|
||||||
self.add_row(torrent_id, update=False)
|
self.add_row(torrent_id, update=False)
|
||||||
|
self.mark_dirty(torrent_id)
|
||||||
|
|
||||||
self.update_filter()
|
self.update_filter()
|
||||||
self.update()
|
self.update()
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue