[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:
@ -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):
|
||||
|
Reference in New Issue
Block a user