mirror of
https://git.deluge-torrent.org/deluge
synced 2025-08-03 06:58:42 +00:00
Added test if self.model_filter is None
self.model_filter will be None if no list was ever loaded in the Client, so listview.create_column_state would fail.
This commit is contained in:
parent
ca272bb36a
commit
7492d48029
1 changed files with 4 additions and 3 deletions
|
@ -307,6 +307,7 @@ class ListView:
|
|||
position = index
|
||||
break
|
||||
sort = None
|
||||
if self.model_filter:
|
||||
sort_id, order = self.model_filter.get_sort_column_id()
|
||||
if self.get_column_name(sort_id) == column.get_title():
|
||||
sort = sort_id
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue