mirror of
https://git.deluge-torrent.org/deluge
synced 2025-04-20 11:35:49 +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
|
||||
* Improve performance of initial torrent list load
|
||||
* 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:
|
||||
* Fix Vista slowness issue
|
||||
|
|
|
@ -90,6 +90,7 @@ class Signals(component.Component):
|
|||
log.debug("torrent id: %s", torrent_id)
|
||||
# Add the torrent to the treeview
|
||||
component.get("TorrentView").add_row(torrent_id)
|
||||
component.get("TorrentView").mark_dirty(torrent_id)
|
||||
|
||||
def torrent_removed_signal(self, torrent_id):
|
||||
log.debug("torrent_remove signal received..")
|
||||
|
|
|
@ -206,6 +206,7 @@ class TorrentView(listview.ListView, component.Component):
|
|||
def _on_session_state(self, state):
|
||||
for torrent_id in state:
|
||||
self.add_row(torrent_id, update=False)
|
||||
self.mark_dirty(torrent_id)
|
||||
|
||||
self.update_filter()
|
||||
self.update()
|
||||
|
|
Loading…
Add table
Reference in a new issue