Skip to content

Commit

Permalink
Make onOptionsItemSelected not always return true
Browse files Browse the repository at this point in the history
Signed-off-by: Jonas Mayer <[email protected]>
  • Loading branch information
JonasMayerDev authored and alperozturk96 committed Feb 13, 2024
1 parent d75227a commit 4e184d1
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -320,6 +320,8 @@ public boolean onOptionsItemSelected(MenuItem item) {
}
} else if (itemId == R.id.action_toggle_global_pause) {
toggleGlobalPause(item);
} else {
return super.onOptionsItemSelected(item);
}

return true;
Expand Down

0 comments on commit 4e184d1

Please sign in to comment.