Fix InteractiveSearch for find before model is populated

Fixes #10844
This commit is contained in:
prculley 2018-10-14 09:53:53 -05:00 committed by Nick Hall
parent c660ed1728
commit 79074587f3

View File

@ -239,6 +239,8 @@ class InteractiveSearchBox:
return
model = self._treeview.get_model()
if not model:
return
selection = self._treeview.get_selection()
# disable flush timeout while searching
if self._entry_flush_timeout: