Loading libs/WindowManager/Shell/src/com/android/wm/shell/common/split/SplitLayout.java +2 −2 Original line number Diff line number Diff line Loading @@ -571,9 +571,9 @@ public final class SplitLayout implements DisplayInsetsController.OnInsetsChange // For flexible split, expand app offscreen as well if (mDividerSnapAlgorithm.areOffscreenRatiosSupported()) { if (position <= mDividerSnapAlgorithm.getMiddleTarget().position) { bounds1.top = bounds1.bottom - bounds2.width(); bounds1.top = bounds1.bottom - bounds2.height(); } else { bounds2.bottom = bounds2.top + bounds1.width(); bounds2.bottom = bounds2.top + bounds1.height(); } } } Loading Loading
libs/WindowManager/Shell/src/com/android/wm/shell/common/split/SplitLayout.java +2 −2 Original line number Diff line number Diff line Loading @@ -571,9 +571,9 @@ public final class SplitLayout implements DisplayInsetsController.OnInsetsChange // For flexible split, expand app offscreen as well if (mDividerSnapAlgorithm.areOffscreenRatiosSupported()) { if (position <= mDividerSnapAlgorithm.getMiddleTarget().position) { bounds1.top = bounds1.bottom - bounds2.width(); bounds1.top = bounds1.bottom - bounds2.height(); } else { bounds2.bottom = bounds2.top + bounds1.width(); bounds2.bottom = bounds2.top + bounds1.height(); } } } Loading