diff options
| author | 2016-10-14 14:24:48 +0000 | |
|---|---|---|
| committer | 2016-10-14 14:24:48 +0000 | |
| commit | 3f23c9f36eac1d4ca357cc8a44e8cff6c6122e14 (patch) | |
| tree | 79b5673297b8a16b80f69d29eddbe6143e314211 | |
| parent | e0a27e855bc22f99618aeca09737c344237deb26 (diff) | |
| parent | 4e7407a80ec46ec4c132af088f779d519b33041a (diff) | |
Merge "Fix split-screen flash issue" am: 6738617652 am: f1fed4de21
am: 4e7407a80e
Change-Id: Ibfef3bd01a54cca64a2f0de197bd9480a7539cd0
| -rw-r--r-- | packages/SystemUI/src/com/android/systemui/stackdivider/DividerView.java | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/packages/SystemUI/src/com/android/systemui/stackdivider/DividerView.java b/packages/SystemUI/src/com/android/systemui/stackdivider/DividerView.java index cb77d7b29c9f..4e34bbc11453 100644 --- a/packages/SystemUI/src/com/android/systemui/stackdivider/DividerView.java +++ b/packages/SystemUI/src/com/android/systemui/stackdivider/DividerView.java @@ -1113,6 +1113,7 @@ public class DividerView extends FrameLayout implements OnTouchListener, public final void onBusEvent(RecentsActivityStartingEvent recentsActivityStartingEvent) { if (mGrowRecents && getWindowManagerProxy().getDockSide() == WindowManager.DOCKED_TOP + && getSnapAlgorithm().getMiddleTarget() != getSnapAlgorithm().getLastSplitTarget() && getCurrentPosition() == getSnapAlgorithm().getLastSplitTarget().position) { mState.growAfterRecentsDrawn = true; startDragging(false /* animate */, false /* touching */); |