diff options
| author | 2021-07-02 17:41:07 +0000 | |
|---|---|---|
| committer | 2021-07-02 17:41:07 +0000 | |
| commit | 8f5d73a62a834a2e6fbcfd3bda554dda57dcbf0a (patch) | |
| tree | bedf779a2bb6a5604937ec475cdcffb4c95fec54 | |
| parent | b6d444ff4cac841af8b2083e8f0b84aba103a0d8 (diff) | |
| parent | cf43a955dfca8aca172ca57a9a30a2dd4331e7a6 (diff) | |
Merge "Fix 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 f3369e8f71..6f2d716cf1 100644 --- a/include/input/Input.h +++ b/include/input/Input.h @@ -48,7 +48,7 @@ enum { AKEY_EVENT_FLAG_IS_ACCESSIBILITY_EVENT = android::os::IInputConstants::INPUT_EVENT_FLAG_IS_ACCESSIBILITY_EVENT, // 0x800, #else - AKEY_EVENT_FLAG_IS_ACCESSIBILITY_EVENT = 0x800; + AKEY_EVENT_FLAG_IS_ACCESSIBILITY_EVENT = 0x800, #endif /* Signifies that the key is being predispatched */ AKEY_EVENT_FLAG_PREDISPATCH = 0x20000000, |