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

Commit 2f8f8145 authored by Winson Chung's avatar Winson Chung Committed by android-build-merger
Browse files

Merge "Skip updating exclusion rects unless one is set" into qt-qpr1-dev

am: 4b15467f

Change-Id: I7eedaaddd5b2c843cb9f019440085bb9ceed9d25
parents 4e23edb9 4b15467f
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -14431,8 +14431,8 @@ public class View implements Drawable.Callback, KeyEvent.Callback,
        }
        notifyAppearedOrDisappearedForContentCaptureIfNeeded(isVisible);
        if (isVisible != oldVisible) {
            updateSystemGestureExclusionRects();
        if (!getSystemGestureExclusionRects().isEmpty() && isVisible != oldVisible) {
            postUpdateSystemGestureExclusionRects();
        }
    }