bug 9478; fix quick search exception when nothing in searched list

This commit is contained in:
prculley 2016-12-18 17:37:04 -06:00 committed by Nick Hall
parent 90b8145693
commit ce884b6578

View File

@ -440,6 +440,8 @@ class InteractiveSearchBox:
search_column = self._treeview.get_search_column()
is_tree = not (model.get_flags() & Gtk.TreeModelFlags.LIST_ONLY)
while True:
if not cur_iter: # can happen on empty list
return False
if (self.search_equal_func(model, search_column,
text, cur_iter)):
count += 1