mirror of
https://github.com/tachiyomiorg/tachiyomi.git
synced 2024-11-05 01:55:09 +01:00
More ActionToolbar tweaks
This commit is contained in:
parent
ac4ae8103e
commit
33901dd72f
@ -327,7 +327,6 @@ class LibraryController(
|
||||
* Destroys the action mode.
|
||||
*/
|
||||
private fun destroyActionModeIfNeeded() {
|
||||
(activity as? MainActivity)?.showBottomNav(visible = true, collapse = true)
|
||||
actionMode?.finish()
|
||||
}
|
||||
|
||||
@ -435,10 +434,13 @@ class LibraryController(
|
||||
}
|
||||
|
||||
override fun onDestroyActionMode(mode: ActionMode?) {
|
||||
binding.actionToolbar.hide()
|
||||
// Clear all the manga selections and notify child views.
|
||||
selectedMangas.clear()
|
||||
selectionRelay.call(LibrarySelectionEvent.Cleared())
|
||||
|
||||
binding.actionToolbar.hide()
|
||||
(activity as? MainActivity)?.showBottomNav(visible = true, collapse = true)
|
||||
|
||||
actionMode = null
|
||||
}
|
||||
|
||||
|
@ -271,7 +271,6 @@ class UpdatesController :
|
||||
}
|
||||
|
||||
private fun destroyActionModeIfNeeded() {
|
||||
(activity as? MainActivity)?.showBottomNav(visible = true, collapse = true)
|
||||
actionMode?.finish()
|
||||
}
|
||||
|
||||
@ -353,9 +352,12 @@ class UpdatesController :
|
||||
* @param mode the ActionMode object
|
||||
*/
|
||||
override fun onDestroyActionMode(mode: ActionMode?) {
|
||||
binding.actionToolbar.hide()
|
||||
adapter?.mode = SelectableAdapter.Mode.IDLE
|
||||
adapter?.clearSelection()
|
||||
|
||||
binding.actionToolbar.hide()
|
||||
(activity as? MainActivity)?.showBottomNav(visible = true, collapse = true)
|
||||
|
||||
actionMode = null
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user