mirror of
https://git.deluge-torrent.org/deluge
synced 2025-04-20 19:44:52 +00:00
Fix saving Files tab and Peers tab state
This commit is contained in:
parent
740506343f
commit
1bf7422904
3 changed files with 3 additions and 2 deletions
|
@ -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…
Add table
Reference in a new issue