Small fix

This commit is contained in:
M66B 2022-05-30 07:35:37 +02:00
parent 59be976218
commit 5218b1598c
1 changed files with 1 additions and 1 deletions

View File

@ -125,7 +125,7 @@ public class NavMenuItem {
boolean onLongClick() {
try {
return longClick.call();
return (longClick != null && longClick.call());
} catch (Throwable ex) {
Log.e(ex);
}