More android fixes

This commit is contained in:
crschnick
2025-12-21 08:05:03 +00:00
parent a259a68f79
commit 7cb1a3955e
2 changed files with 1 additions and 1 deletions
@@ -56,7 +56,6 @@ public class StoreIconComp extends SimpleComp {
stack.hoverProperty()));
stack.addEventFilter(MouseEvent.MOUSE_PRESSED, event -> {
System.out.println(event);
if (event.getButton() == MouseButton.PRIMARY) {
if (wrapper.getValidity().getValue() == DataStoreEntry.Validity.LOAD_FAILED) {
return;
@@ -38,6 +38,7 @@ public class MenuHelper {
field.setAccessible(true);
var popup = (PopupControl) field.get(skin);
popup.setAutoHide(!AppPrefs.get().limitedTouchscreenMode().get());
popup.setConsumeAutoHidingEvents(true);
return mb;
}