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

Commit d4bc280d authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Gesture Exclusion: Fix crash when exclusion updates after detaching window"

parents 551a76e2 021d871e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -3980,7 +3980,7 @@ public final class ViewRootImpl implements ViewParent,

    void systemGestureExclusionChanged() {
        final List<Rect> rectsForWindowManager = mGestureExclusionTracker.computeChangedRects();
        if (rectsForWindowManager != null) {
        if (rectsForWindowManager != null && mView != null) {
            try {
                mWindowSession.reportSystemGestureExclusionChanged(mWindow, rectsForWindowManager);
            } catch (RemoteException e) {