Simplify selected count to just show the number

This commit is contained in:
arkon
2020-02-16 16:00:41 -05:00
parent 74cc77400c
commit 9cdd4bee97
5 changed files with 4 additions and 5 deletions
@@ -423,7 +423,7 @@ class LibraryController(
// Destroy action mode if there are no items selected.
destroyActionModeIfNeeded()
} else {
mode.title = resources?.getString(R.string.label_selected, count)
mode.title = count.toString()
menu.findItem(R.id.action_edit_cover)?.isVisible = count == 1
}
return false