From 2403d13cebaf62d7dfb9a95e189da79fb6cc21fa Mon Sep 17 00:00:00 2001 From: Andrew Resch Date: Tue, 20 Jan 2009 11:45:43 +0000 Subject: [PATCH] Fix torrents not displaying properly after disconnecting and reconnecting to the daemon --- deluge/ui/gtkui/torrentview.py | 1 + 1 file changed, 1 insertion(+) 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"""