Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 42457401 authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Automerger Merge Worker
Browse files

Merge "Fix FLAG_IS_ACCESSIBILITY_EVENT for non-linux builds" into sc-dev am:...

Merge "Fix FLAG_IS_ACCESSIBILITY_EVENT for non-linux builds" into sc-dev am: 8f5d73a6 am: 1d8759d3

Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/native/+/15175856

Change-Id: I2e2ca25c365284cb47238988eef8f3f016916868
parents a30bb320 1d8759d3
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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,