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
@@ -116,9 +116,8 @@ class DownloadController : NucleusController<DownloadPresenter>() {
DownloadService.stop(context)
presenter.clearQueue()
}
else -> return super.onOptionsItemSelected(item)
}
return true
return super.onOptionsItemSelected(item)
}
/**