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

Commit eebff5a5 authored by Svetoslav's avatar Svetoslav Committed by Android Git Automerger
Browse files

am 84805a00: am b4bd1427: Merge "Fix live region updates." into lmp-dev

* commit '84805a00a3ed0234948b76274c93a60f36e96e00':
  Fix live region updates.
parents 4fe8a815 c60c33e1
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -20691,6 +20691,7 @@ public class View implements Drawable.Callback, KeyEvent.Callback,
            if (mPosted) {
                return;
            }
            final long timeSinceLastMillis = SystemClock.uptimeMillis() - mLastEventTimeMillis;
            final long minEventIntevalMillis =
                    ViewConfiguration.getSendRecurringAccessibilityEventsInterval();
@@ -20699,7 +20700,6 @@ public class View implements Drawable.Callback, KeyEvent.Callback,
                run();
            } else {
                postDelayed(this, minEventIntevalMillis - timeSinceLastMillis);
                mPosted = true;
                mPostedWithDelay = true;
            }
        }