mirror of
https://git.deluge-torrent.org/deluge
synced 2025-08-06 16:38:43 +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:
|
GtkUI:
|
||||||
* Fix opening links from Help menu and others
|
* Fix opening links from Help menu and others
|
||||||
* Fix remembering sorted column in the torrent list
|
* Fix remembering sorted column in the torrent list
|
||||||
|
* Fix saving Files tab and Peers tab state
|
||||||
|
|
||||||
Misc:
|
Misc:
|
||||||
* Fix bdecoding some torrent files
|
* Fix bdecoding some torrent files
|
||||||
|
|
|
@ -212,7 +212,7 @@ class FilesTab(Tab):
|
||||||
state = {
|
state = {
|
||||||
"columns": {},
|
"columns": {},
|
||||||
"sort_id": column_id,
|
"sort_id": column_id,
|
||||||
"sort_order": sort_order
|
"sort_order": int(sort_order)
|
||||||
}
|
}
|
||||||
|
|
||||||
for index, column in enumerate(self.listview.get_columns()):
|
for index, column in enumerate(self.listview.get_columns()):
|
||||||
|
|
|
@ -166,7 +166,7 @@ class PeersTab(Tab):
|
||||||
state = {
|
state = {
|
||||||
"columns": {},
|
"columns": {},
|
||||||
"sort_id": column_id,
|
"sort_id": column_id,
|
||||||
"sort_order": sort_order
|
"sort_order": int(sort_order)
|
||||||
}
|
}
|
||||||
|
|
||||||
for index, column in enumerate(self.listview.get_columns()):
|
for index, column in enumerate(self.listview.get_columns()):
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue