From 8933ac3123df110bce6a76834c19f8e29ac338db Mon Sep 17 00:00:00 2001 From: Calum Lind Date: Tue, 31 May 2011 18:14:26 +0100 Subject: [PATCH] Fix #1560 - FilesTab Progress value sorting by int instead of float --- deluge/ui/gtkui/files_tab.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deluge/ui/gtkui/files_tab.py b/deluge/ui/gtkui/files_tab.py index a9476caac..d0a783aaf 100644 --- a/deluge/ui/gtkui/files_tab.py +++ b/deluge/ui/gtkui/files_tab.py @@ -115,7 +115,7 @@ class FilesTab(Tab): self.listview = glade.get_widget("files_listview") # filename, size, progress string, progress value, priority, file index, icon id - self.treestore = gtk.TreeStore(str, gobject.TYPE_UINT64, str, int, int, int, str) + self.treestore = gtk.TreeStore(str, gobject.TYPE_UINT64, str, float, int, int, str) # We need to store the row that's being edited to prevent updating it until # it's been done editing