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

Commit 2f0396ad authored by Svetoslav's avatar Svetoslav Committed by Android (Google) Code Review
Browse files

Merge "Crash in ViewRootImpl when accessibility is on."

parents 4607c0d9 e89f48bf
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -6449,8 +6449,8 @@ public final class ViewRootImpl implements ViewParent,
            final long timeSinceLastMillis = SystemClock.uptimeMillis() - mLastEventTimeMillis;
            final long minEventIntevalMillis =
                    ViewConfiguration.getSendRecurringAccessibilityEventsInterval();
            if (timeSinceLastMillis >= minEventIntevalMillis) {
            mSource.removeCallbacks(this);
            if (timeSinceLastMillis >= minEventIntevalMillis) {
                run();
            } else {
                mSource.postDelayed(this, minEventIntevalMillis - timeSinceLastMillis);