diff options
| author | 2021-07-06 17:20:49 +0000 | |
|---|---|---|
| committer | 2021-07-06 17:20:49 +0000 | |
| commit | 199ca20ef403c239ad26bccdf28ca35e3a3d2642 (patch) | |
| tree | 64e0df05b98e2face5867a7dc15a670a4a99b442 | |
| parent | 2d7db5747fb1ffbea629dfc41f8a12ac415da42f (diff) | |
| parent | ba0ce7ddde1541536f851582946ab565fe2e50df (diff) | |
Merge "Fix AMOTION_EVENT_FLAG_IS_ACCESSIBILITY_EVENT for non-linux builds" into sc-dev
| -rw-r--r-- | include/input/Input.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/input/Input.h b/include/input/Input.h index 6f2d716cf1..2e326cb102 100644 --- a/include/input/Input.h +++ b/include/input/Input.h @@ -95,7 +95,7 @@ enum { AMOTION_EVENT_FLAG_IS_ACCESSIBILITY_EVENT = android::os::IInputConstants::INPUT_EVENT_FLAG_IS_ACCESSIBILITY_EVENT, // 0x800, #else - AMOTION_EVENT_FLAG_IS_ACCESSIBILITY_EVENT = 0x800; + AMOTION_EVENT_FLAG_IS_ACCESSIBILITY_EVENT = 0x800, #endif /* Motion event is inconsistent with previously sent motion events. */ |