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

Commit 7ccdb52f authored by Matthew Ng's avatar Matthew Ng
Browse files

Increases the minimized width in landscape by statusbar height

Adds an extra 24dp (statusbar inset height) to the minimized width
in landscape and seascape.

Change-Id: Ia7b6b665a4ef01e5998d1ada0bbb4db02abb7f97
Fixes: 36529938, 36531002
Test: manual
parent 46f6e69e
Loading
Loading
Loading
Loading
+6 −2
Original line number Diff line number Diff line
@@ -332,8 +332,12 @@ public class DividerSnapAlgorithm {
    }

    private void addMinimizedTarget(boolean isHorizontalDivision) {
        int position = mTaskHeightInMinimizedMode;
        position += isHorizontalDivision ? mInsets.top : mInsets.left;
        // In portrait offset the position by the statusbar height, in landscape add the statusbar
        // height as well to match portrait offset
        int position = mTaskHeightInMinimizedMode + mInsets.top;
        if (!isHorizontalDivision) {
            position += mInsets.left;
        }
        mTargets.add(new SnapTarget(position, position, SnapTarget.FLAG_NONE));
    }