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

Commit da87a31e authored by Adrian Roos's avatar Adrian Roos Committed by android-build-merger
Browse files

Merge "ScreenDecor: Set touchable region in windows coordinate space" into pi-dev

am: befd06af

Change-Id: I12cb6febe20f01991a57bf52c78584dda1b62dc7
parents bae2f15f befd06af
Loading
Loading
Loading
Loading
+12 −1
Original line number Diff line number Diff line
@@ -554,7 +554,18 @@ public class ScreenDecorations extends SystemUI implements Tunable {
                return null;
            }

            return mInfo.displayCutout.getBounds();
            View rootView = getRootView();
            Region cutoutBounds = mInfo.displayCutout.getBounds();

            // Transform to window's coordinate space
            rootView.getLocationOnScreen(mLocation);
            cutoutBounds.translate(-mLocation[0], -mLocation[1]);

            // Intersect with window's frame
            cutoutBounds.op(rootView.getLeft(), rootView.getTop(), rootView.getRight(),
                    rootView.getBottom(), Region.Op.INTERSECT);

            return cutoutBounds;
        }
    }
}