9315: [Regression]: Filter set by default on selector is ignored

'Show all' button status and first load
This commit is contained in:
romjerome 2016-03-28 09:24:10 +02:00
parent 361634ecaa
commit 105dfb9ad5

View File

@ -268,7 +268,10 @@ class BaseSelector(ManagedWindow):
"""
Builds the selection people see in the Selector
"""
filter_info = (False, self.search_bar.get_value(), False)
if not self.filter[1]:
filter_info = (False, self.search_bar.get_value(), False)
else:
filter_info = self.filter
#set up cols the first time
if self.setupcols :