mirror of
https://github.com/codex-storage/deluge.git
synced 2025-01-13 04:54:23 +00:00
[GTKUI] Fix bug in the torrentview introduced by 5dba83
The speedup optimizations removed code that recreates the model filter when a new column is added. This missing line is only a problem when there plugins that add columns to the GTKUI after initially loading the torrentlist.
This commit is contained in:
parent
26f5be1760
commit
f95cfb42c3
@ -414,6 +414,7 @@ class ListView:
|
||||
if self.liststore is not None:
|
||||
self.liststore.foreach(copy_row, (new_list, self.columns))
|
||||
self.liststore = new_list
|
||||
self.create_model_filter()
|
||||
return
|
||||
|
||||
def remove_column(self, header):
|
||||
|
Loading…
x
Reference in New Issue
Block a user