Fix Verify tool bug caused by bad change in GObject introspection

Fixes: #11708
This commit is contained in:
prculley 2020-05-07 09:39:09 -05:00 committed by Paul Culley
parent 9906f1e4ab
commit 9230de61be

View File

@ -662,18 +662,19 @@ class VerifyResults(ManagedWindow):
self.closeall()
def hide_toggled(self, button):
self.filt_model = self.real_model.filter_new()
if button.get_active():
button.set_label(_("_Show all"))
self.filt_model = self.real_model.filter_new()
self.filt_model.set_visible_column(VerifyResults.SHOW_COL)
self.sort_model = self.filt_model.sort_new_with_model()
self.warn_tree.set_model(self.sort_model)
else:
self.filt_model = self.real_model.filter_new()
self.filt_model.set_visible_column(VerifyResults.TRUE_COL)
self.sort_model = self.filt_model.sort_new_with_model()
self.warn_tree.set_model(self.sort_model)
button.set_label(_("_Hide marked"))
self.filt_model.set_visible_column(VerifyResults.TRUE_COL)
if hasattr(self.filt_model, "sort_new_with_model"):
self.sort_model = self.filt_model.sort_new_with_model()
else:
self.sort_model = Gtk.TreeModelSort.new_with_model(
self.filt_model)
self.warn_tree.set_model(self.sort_model)
def selection_toggled(self, cell, path_string):
sort_path = tuple(map(int, path_string.split(':')))