mirror of
https://github.com/codex-storage/deluge.git
synced 2025-02-27 02:20:32 +00:00
Fix #1210 save sort column order in files tab -- patch from squisher
This commit is contained in:
parent
3560dac792
commit
5dab17df89
@ -230,8 +230,8 @@ class FilesTab(Tab):
|
|||||||
# Setup state dict
|
# Setup state dict
|
||||||
state = {
|
state = {
|
||||||
"columns": {},
|
"columns": {},
|
||||||
"sort_id": column_id,
|
"sort_id": int(column_id) if column_id >= 0 else None,
|
||||||
"sort_order": int(sort_order) if sort_order else None
|
"sort_order": int(sort_order) if sort_order >= 0 else None
|
||||||
}
|
}
|
||||||
|
|
||||||
for index, column in enumerate(self.listview.get_columns()):
|
for index, column in enumerate(self.listview.get_columns()):
|
||||||
@ -268,7 +268,7 @@ class FilesTab(Tab):
|
|||||||
if state == None:
|
if state == None:
|
||||||
return
|
return
|
||||||
|
|
||||||
if state["sort_id"] and state["sort_order"] is not None:
|
if state["sort_id"] is not None and state["sort_order"] is not None:
|
||||||
self.treestore.set_sort_column_id(state["sort_id"], state["sort_order"])
|
self.treestore.set_sort_column_id(state["sort_id"], state["sort_order"])
|
||||||
|
|
||||||
for (index, column) in enumerate(self.listview.get_columns()):
|
for (index, column) in enumerate(self.listview.get_columns()):
|
||||||
|
Loading…
x
Reference in New Issue
Block a user