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:
Rene Gollent 2013-04-12 00:05:27 -04:00
parent 04b78a402d
commit a53db18937

View File

@ -10136,7 +10136,8 @@ BPoseView::ClearFilter()
fLastFilterStringCount = 1;
fLastFilterStringLength = 0;
fFiltering = false;
if (fRefFilter == NULL)
fFiltering = false;
fFilteredPoseList->MakeEmpty();
Invalidate();