summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Matthew Ng <ngmatthew@google.com> 2017-07-26 11:09:35 -0700
committer Matthew Ng <ngmatthew@google.com> 2017-08-28 15:34:30 -0700
commitd411f6cd6b67b76db4d7a2bb883ea1711c294567 (patch)
treefc045add55bd8143574bc15e23a5d81522e8a098
parent45e8fe20de439d5234472ff8562ff58a5ea7e854 (diff)
Adding back recents grow in split screen
There was a regression where recents stopped growing when in split screen and bottom app has less height than top. Then when pressing recents button it would go into recents on bottom split and divider would move to the center. Test: manual - split with 2 apps, lower divider, press recents button Fixes: 62431729 Change-Id: I3cacb4e4bd38a17602415ebee4e24a517115bbdd
-rw-r--r--packages/SystemUI/src/com/android/systemui/stackdivider/DividerView.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/SystemUI/src/com/android/systemui/stackdivider/DividerView.java b/packages/SystemUI/src/com/android/systemui/stackdivider/DividerView.java
index 45835d51ff90..bf98a835f104 100644
--- a/packages/SystemUI/src/com/android/systemui/stackdivider/DividerView.java
+++ b/packages/SystemUI/src/com/android/systemui/stackdivider/DividerView.java
@@ -596,7 +596,7 @@ public class DividerView extends FrameLayout implements OnTouchListener,
Runnable endAction = () -> {
commitSnapFlags(snapTarget);
mWindowManagerProxy.setResizing(false);
- mDockSide = WindowManager.DOCKED_INVALID;
+ updateDockSide();
mCurrentAnimator = null;
mEntranceAnimationRunning = false;
mExitAnimationRunning = false;