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
@@ -355,7 +355,7 @@ class ChaptersController : NucleusController<ChaptersPresenter>(),
// Destroy action mode if there are no items selected.
destroyActionModeIfNeeded()
} else {
mode.title = resources?.getString(R.string.label_selected, count)
mode.title = count.toString()
}
return false
}