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

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

Merge "Crop touchable region to surface bounds when updating an InputChannel"

parents 610e6181 3823c8c0
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -8698,11 +8698,12 @@ public class WindowManagerService extends IWindowManager.Stub
        h.ownerPid = callingPid;

        if (region == null) {
            h.replaceTouchableRegionWithCrop = true;
            h.replaceTouchableRegionWithCrop(null);
        } else {
            h.touchableRegion.set(region);
            h.replaceTouchableRegionWithCrop = false;
            h.setTouchableRegionCrop(surface);
        }
        h.setTouchableRegionCrop(null /* use the input surface's bounds */);

        final SurfaceControl.Transaction t = mTransactionFactory.get();
        t.setInputWindowInfo(surface, h);