Minor edit to onOptionsItemSelected fallthrough logic

This commit is contained in:
arkon
2020-02-05 22:53:49 -05:00
parent 94b2dd74de
commit 8feb4365dd
7 changed files with 7 additions and 14 deletions
@@ -208,9 +208,8 @@ class ChaptersController : NucleusController<ChaptersPresenter>(),
activity?.invalidateOptionsMenu()
}
R.id.action_sort -> presenter.revertSortOrder()
else -> return super.onOptionsItemSelected(item)
}
return true
return super.onOptionsItemSelected(item)
}
fun onNextChapters(chapters: List<ChapterItem>) {