Changeset 165b97


Ignore:
Timestamp:
08/17/2008 04:18:59 AM (16 years ago)
Author:
Andrew Resch <andrewresch@gmail.com>
Children:
67b85a
Parents:
26fc7c
Message:

Fix not showing new torrents if you don't use the All label first

Files:
3 edited

Legend:

Unmodified
Added
Removed
  • ChangeLog

    r26fc7c r165b97  
    88  * Improve performance of initial torrent list load
    99  * Fix hiding the bottom pane when disabling all the tabs
     10  * Fix not showing new torrents if you don't use the All label first
    1011 
    1112 Windows:
  • deluge/ui/gtkui/signals.py

    r26fc7c r165b97  
    9191        # Add the torrent to the treeview
    9292        component.get("TorrentView").add_row(torrent_id)
     93        component.get("TorrentView").mark_dirty(torrent_id)
    9394
    9495    def torrent_removed_signal(self, torrent_id):
  • deluge/ui/gtkui/torrentview.py

    r26fc7c r165b97  
    207207        for torrent_id in state:
    208208            self.add_row(torrent_id, update=False)
     209            self.mark_dirty(torrent_id)
    209210       
    210211        self.update_filter()   
Note: See TracChangeset for help on using the changeset viewer.