Loading services/core/java/com/android/server/wm/WindowFrames.java +3 −2 Original line number Diff line number Diff line Loading @@ -286,8 +286,9 @@ public class WindowFrames { boolean overrideBottomInset = !windowsAreFloating && !inFullscreenContainer && mFrame.bottom > windowBounds.bottom; mTmpRect.set(mFrame.left, mFrame.top, overrideRightInset ? mTmpRect.right : mFrame.right, overrideBottomInset ? mTmpRect.bottom : mFrame.bottom); mTmpRect.set(mFrame.left, mFrame.top, overrideRightInset ? windowBounds.right : mFrame.right, overrideBottomInset ? windowBounds.bottom : mFrame.bottom); InsetUtils.insetsBetweenFrames(mTmpRect, mContentFrame, mContentInsets); InsetUtils.insetsBetweenFrames(mTmpRect, mVisibleFrame, mVisibleInsets); Loading Loading
services/core/java/com/android/server/wm/WindowFrames.java +3 −2 Original line number Diff line number Diff line Loading @@ -286,8 +286,9 @@ public class WindowFrames { boolean overrideBottomInset = !windowsAreFloating && !inFullscreenContainer && mFrame.bottom > windowBounds.bottom; mTmpRect.set(mFrame.left, mFrame.top, overrideRightInset ? mTmpRect.right : mFrame.right, overrideBottomInset ? mTmpRect.bottom : mFrame.bottom); mTmpRect.set(mFrame.left, mFrame.top, overrideRightInset ? windowBounds.right : mFrame.right, overrideBottomInset ? windowBounds.bottom : mFrame.bottom); InsetUtils.insetsBetweenFrames(mTmpRect, mContentFrame, mContentInsets); InsetUtils.insetsBetweenFrames(mTmpRect, mVisibleFrame, mVisibleInsets); Loading