Generate left mouse click without delay, even if two-button mouse is used, this needed for UfoAI

This commit is contained in:
pelya
2012-11-09 18:02:48 +02:00
parent 34a567477f
commit 627f618ba0
2 changed files with 2 additions and 2 deletions

View File

@@ -82,7 +82,7 @@ class Globals
public static int TrackballDampening = 0;
public static int AudioBufferConfig = 0;
public static boolean OptionalDataDownload[] = null;
public static int LeftClickMethod = AppNeedsTwoButtonMouse ? Mouse.LEFT_CLICK_WITH_TAP_OR_TIMEOUT : Mouse.LEFT_CLICK_NORMAL;
public static int LeftClickMethod = Mouse.LEFT_CLICK_NORMAL;
public static int LeftClickKey = KeyEvent.KEYCODE_DPAD_CENTER;
public static int LeftClickTimeout = 3;
public static int RightClickTimeout = 4;