Merge pull request #297 from prculley/bug9478_42

bug 9478; fix quick search exception when nothing in searched list
This commit is contained in:
Sam Manzi 2016-12-23 10:17:00 +11:00 committed by GitHub
commit 63ce7383cc

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