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

Commit a30c12a1 authored by Jean-Baptiste Queru's avatar Jean-Baptiste Queru Committed by Android Git Automerger
Browse files

am 4a88013a: resolved conflicts for merge of bf1439c5 to stage-korg-master

* commit '4a88013a':
  Preserve flags field of event passed to injectKeyEvent()
parents 5343f5a8 4a88013a
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -5422,6 +5422,7 @@ public class WindowManagerService extends IWindowManager.Stub
        int deviceId = ev.getDeviceId();
        int scancode = ev.getScanCode();
        int source = ev.getSource();
        int flags = ev.getFlags();
        
        if (source == InputDevice.SOURCE_UNKNOWN) {
            source = InputDevice.SOURCE_KEYBOARD;
@@ -5431,7 +5432,7 @@ public class WindowManagerService extends IWindowManager.Stub
        if (downTime == 0) downTime = eventTime;

        KeyEvent newEvent = new KeyEvent(downTime, eventTime, action, code, repeatCount, metaState,
                deviceId, scancode, KeyEvent.FLAG_FROM_SYSTEM, source);
                deviceId, scancode, flags | KeyEvent.FLAG_FROM_SYSTEM, source);

        final int pid = Binder.getCallingPid();
        final int uid = Binder.getCallingUid();