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:26:16 +02:00
parent fc687e3bfa
commit f6df78bf33

View File

@ -273,7 +273,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 :