Fix #9663.
When clearing the filter state, don't disable filtering entirely if we have a ref filter present. Otherwise, it won't be invoked again until the next time a typeahead filter is engaged.
This commit is contained in:
parent
04b78a402d
commit
a53db18937
@ -10136,7 +10136,8 @@ BPoseView::ClearFilter()
|
||||
fLastFilterStringCount = 1;
|
||||
fLastFilterStringLength = 0;
|
||||
|
||||
fFiltering = false;
|
||||
if (fRefFilter == NULL)
|
||||
fFiltering = false;
|
||||
fFilteredPoseList->MakeEmpty();
|
||||
|
||||
Invalidate();
|
||||
|
Loading…
Reference in New Issue
Block a user