Fix saving Files tab and Peers tab state
This commit is contained in:
parent
740506343f
commit
1bf7422904
@ -5,6 +5,7 @@ Deluge 1.1.1 - (In Development)
|
||||
GtkUI:
|
||||
* Fix opening links from Help menu and others
|
||||
* Fix remembering sorted column in the torrent list
|
||||
* Fix saving Files tab and Peers tab state
|
||||
|
||||
Misc:
|
||||
* Fix bdecoding some torrent files
|
||||
|
||||
@ -212,7 +212,7 @@ class FilesTab(Tab):
|
||||
state = {
|
||||
"columns": {},
|
||||
"sort_id": column_id,
|
||||
"sort_order": sort_order
|
||||
"sort_order": int(sort_order)
|
||||
}
|
||||
|
||||
for index, column in enumerate(self.listview.get_columns()):
|
||||
|
||||
@ -166,7 +166,7 @@ class PeersTab(Tab):
|
||||
state = {
|
||||
"columns": {},
|
||||
"sort_id": column_id,
|
||||
"sort_order": sort_order
|
||||
"sort_order": int(sort_order)
|
||||
}
|
||||
|
||||
for index, column in enumerate(self.listview.get_columns()):
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user