Allow filter menu to be opened even if no filters to allow for search saving
This commit is contained in:
parent
4d15ac2fa3
commit
fe5c0295c3
1 changed files with 2 additions and 2 deletions
|
|
@ -331,10 +331,10 @@ open class BrowseCatalogueController(bundle: Bundle) :
|
||||||
menu.findItem(R.id.action_set_filter).apply {
|
menu.findItem(R.id.action_set_filter).apply {
|
||||||
icon.mutate()
|
icon.mutate()
|
||||||
if (presenter.sourceFilters.isEmpty()) {
|
if (presenter.sourceFilters.isEmpty()) {
|
||||||
isEnabled = false
|
// isEnabled = false [EXH]
|
||||||
icon.alpha = 128
|
icon.alpha = 128
|
||||||
} else {
|
} else {
|
||||||
isEnabled = true
|
// isEnabled = true [EXH]
|
||||||
icon.alpha = 255
|
icon.alpha = 255
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue