mirror of
https://git.deluge-torrent.org/deluge
synced 2025-08-06 00:18:39 +00:00
Fix #1560 - FilesTab Progress value sorting by int instead of float
This commit is contained in:
parent
47c9cccd74
commit
2005691312
1 changed files with 1 additions and 1 deletions
|
@ -112,7 +112,7 @@ class FilesTab(Tab):
|
||||||
|
|
||||||
self.listview = glade.get_widget("files_listview")
|
self.listview = glade.get_widget("files_listview")
|
||||||
# filename, size, progress string, progress value, priority, file index, icon id
|
# 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
|
# We need to store the row that's being edited to prevent updating it until
|
||||||
# it's been done editing
|
# it's been done editing
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue