From 631768f01b188c0d7dd77ee76b70898fdf252ae1 Mon Sep 17 00:00:00 2001 From: Andrew Resch Date: Tue, 20 Jan 2009 11:45:43 +0000 Subject: Fix torrents not displaying properly after disconnecting and reconnecting to the daemon --- ChangeLog | 1 + deluge/ui/gtkui/torrentview.py | 1 + 2 files changed, 2 insertions(+) diff --git a/ChangeLog b/ChangeLog index 072cf8c33..cabdd64f7 100644 --- a/ChangeLog +++ b/ChangeLog @@ -10,6 +10,7 @@ Deluge 1.1.1 - (In Development) * Fix crashing in AddTorrentDialog when removing torrents from the list * Do not allow duplicate torrents in the AddTorrentDialog * Fix translating speed units in status tab when a per-torrent limit is set + * Fix torrents not displaying properly after disconnecting and reconnecting to the daemon Misc: * Fix bdecoding some torrent files diff --git a/deluge/ui/gtkui/torrentview.py b/deluge/ui/gtkui/torrentview.py index 839d1c602..4ea9cfaed 100644 --- a/deluge/ui/gtkui/torrentview.py +++ b/deluge/ui/gtkui/torrentview.py @@ -213,6 +213,7 @@ class TorrentView(listview.ListView, component.Component): """Stops the torrentview""" # We need to clear the liststore self.liststore.clear() + self.prev_status = {} def shutdown(self): """Called when GtkUi is exiting""" -- cgit