wineandroid: Force non-zero state on ACTION_BUTTON_RELEASE to avoid duplicate events.

Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Alexandre Julliard 2018-02-01 16:06:13 +01:00
parent e7202687fc
commit 6a4fa30e4c
1 changed files with 3 additions and 0 deletions

View File

@ -293,6 +293,9 @@ jboolean motion_event( JNIEnv *env, jobject obj, jint win, jint action, jint x,
mask == AMOTION_EVENT_ACTION_BUTTON_RELEASE ))
return JNI_FALSE;
/* make sure a subsequent AMOTION_EVENT_ACTION_UP is not treated as a touch event */
if (mask == AMOTION_EVENT_ACTION_BUTTON_RELEASE) state |= 0x80000000;
prev_state = InterlockedExchange( &button_state, state );
data.type = MOTION_EVENT;