From d5f7df8a96052d141ba8bcea988de11b43a4f725 Mon Sep 17 00:00:00 2001 From: Andrew Resch Date: Fri, 31 Jul 2009 18:47:42 +0000 Subject: [PATCH] Fix issue where the column state wouldn't save if not using English --- deluge/ui/gtkui/torrentview.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/deluge/ui/gtkui/torrentview.py b/deluge/ui/gtkui/torrentview.py index fd1df1870..870a8bafa 100644 --- a/deluge/ui/gtkui/torrentview.py +++ b/deluge/ui/gtkui/torrentview.py @@ -481,8 +481,7 @@ class TorrentView(listview.ListView, component.Component): for row in self.liststore: if not torrent_id == row[self.columns["torrent_id"].column_indices[0]]: continue - - row[self.get_column_index("Progress")[1]] = state + row[self.get_column_index(_("Progress"))[1]] = state self.mark_dirty(torrent_id)