fix(Touchpad): Edgecase scenarios caused the touchpad to still appear

Such a scenario is the demo mode popup to buy the game
This commit is contained in:
alexytomi
2025-07-25 17:01:43 +08:00
parent 7f79283bcd
commit 7fe42302b6

View File

@@ -132,7 +132,7 @@ public class Touchpad extends View implements GrabListener, AbstractTouchpad {
public void enable(boolean supposed) {
if(mDisplayState) return;
mDisplayState = true;
if(supposed && CallbackBridge.isGrabbing()) return;
if(supposed && CallbackBridge.isGrabbing() && LauncherPreferences.PREF_MOUSE_GRAB_FORCE) return;
_enable();
}