Make onOptionsItemSelected not always return true

Signed-off-by: Jonas Mayer <jonas.a.mayer@gmx.net>
This commit is contained in:
Jonas Mayer 2024-02-13 13:56:39 +01:00 committed by Alper Öztürk
parent d75227aa0f
commit 4e184d1830

View file

@ -320,6 +320,8 @@ public class UploadListActivity extends FileActivity {
}
} else if (itemId == R.id.action_toggle_global_pause) {
toggleGlobalPause(item);
} else {
return super.onOptionsItemSelected(item);
}
return true;