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

Commit 5bd7cc22 authored by Mateusz Cicheński's avatar Mateusz Cicheński
Browse files

Only compare the relevant insets for navbar position

This reverts a regression introduced in http://ag/21397084, where the
insets were all rewritten to outInsets, even though the insetsState
for them when rotating screen is still in previous orientation.

Bug: 281769053
Bug: 234093736
Test: http://recall/-/ekEuGtt9d9HWqkUtAzpHx8/eNX1aOBLtPs7PUR5LUuYfi
Change-Id: I508123660c33e63696af39c2735a1dc92fdaf74f
parent 94e4aeef
Loading
Loading
Loading
Loading
+3 −4
Original line number Diff line number Diff line
@@ -375,16 +375,15 @@ public class DisplayLayout {
                    insetsState.getDisplayFrame(),
                    WindowInsets.Type.navigationBars(),
                    false /* ignoreVisibility */);
            outInsets.set(insets.left, insets.top, insets.right, insets.bottom);
            int position = navigationBarPosition(res, displayWidth, displayHeight, displayRotation);
            int navBarSize =
                    getNavigationBarSize(res, position, displayWidth > displayHeight, uiMode);
            if (position == NAV_BAR_BOTTOM) {
                outInsets.bottom = Math.max(outInsets.bottom , navBarSize);
                outInsets.bottom = Math.max(insets.bottom , navBarSize);
            } else if (position == NAV_BAR_RIGHT) {
                outInsets.right = Math.max(outInsets.right , navBarSize);
                outInsets.right = Math.max(insets.right , navBarSize);
            } else if (position == NAV_BAR_LEFT) {
                outInsets.left = Math.max(outInsets.left , navBarSize);
                outInsets.left = Math.max(insets.left , navBarSize);
            }
        }