Turn off filter when hiding the filter bar.
This commit is contained in:
parent
87fee99801
commit
d50b88f776
|
@ -1528,6 +1528,10 @@ static void sleepCallBack(void * controller, io_service_t y,
|
|||
{
|
||||
[self showFilterBar: !fFilterBarVisible animate: YES];
|
||||
[fDefaults setBool: fFilterBarVisible forKey: @"FilterBar"];
|
||||
|
||||
//disable filtering when hiding
|
||||
if (!fFilterBarVisible)
|
||||
[self setFilter: fNoFilterButton];
|
||||
}
|
||||
|
||||
- (void) showFilterBar: (BOOL) show animate: (BOOL) animate
|
||||
|
|
Loading…
Reference in New Issue