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

Commit 288960b5 authored by vadimt's avatar vadimt
Browse files

Disable waiting for animation from event injection

This will avoid taking locks from it,
and stop TAPL from introducing jank under lock contention.

Bug: 173469230
Test: presubmit
Change-Id: Ifeba2dc7528b573ffaba2aa94dfdae6b8a14a7b3
parent c668a2a5
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1215,7 +1215,7 @@ public final class LauncherInstrumentation {

        final MotionEvent event = getMotionEvent(downTime, currentTime, action, point.x, point.y);
        assertTrue("injectInputEvent failed",
                mInstrumentation.getUiAutomation().injectInputEvent(event, true));
                mInstrumentation.getUiAutomation().injectInputEvent(event, true, false));
        event.recycle();
    }