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
@@ -374,10 +374,9 @@ class LibraryController(
R.id.action_source_migration -> {
router.pushController(MigrationController().withFadeTransaction())
}
else -> return super.onOptionsItemSelected(item)
}
return true
return super.onOptionsItemSelected(item)
}
/**