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

Commit e48c468b authored by Jerry Chang's avatar Jerry Chang Committed by Automerger Merge Worker
Browse files

Merge "Consider screen insets when setting smallestWidthDp" into tm-dev am: fc447969

Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/base/+/17147681

Change-Id: I75931322cecc30ac1e82270b395a24c0a5066c7b
parents f27ff476 fc447969
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -532,7 +532,9 @@ public final class SplitLayout implements DisplayInsetsController.OnInsetsChange
    }

    private int getSmallestWidthDp(Rect bounds) {
        final int minWidth = Math.min(bounds.width(), bounds.height());
        mTempRect.set(bounds);
        mTempRect.inset(getDisplayInsets(mContext));
        final int minWidth = Math.min(mTempRect.width(), mTempRect.height());
        final float density = mContext.getResources().getDisplayMetrics().density;
        return (int) (minWidth / density);
    }