Fix library bugs (#7648)

- Fix mixup in Action Menu
- Fix back action not clearing search
This commit is contained in:
Andreas
2022-07-30 04:42:18 +02:00
committed by GitHub
parent 7d74b174e0
commit db93d1da76
2 changed files with 12 additions and 6 deletions

View File

@@ -78,11 +78,17 @@ class LibraryController(
}
override fun handleBack(): Boolean {
if (presenter.selection.isNotEmpty()) {
presenter.clearSelection()
return true
return when {
presenter.selection.isNotEmpty() -> {
presenter.clearSelection()
true
}
presenter.searchQuery != null -> {
presenter.searchQuery = null
true
}
else -> false
}
return false
}
override fun onViewCreated(view: View) {