[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:
bendikro 2014-10-08 03:26:03 +02:00 committed by Calum Lind
parent 26f5be1760
commit f95cfb42c3

View File

@ -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):