From 39a2e70d7e5dbe58bb1787e2cab2199c34f0c87c Mon Sep 17 00:00:00 2001 From: Jason Monk Date: Tue, 8 Mar 2016 16:41:23 -0500 Subject: [PATCH] Flip the default on whether to keep rows together Bug: 27201532 Change-Id: Ib51ef4fb374ea197b4119fbd230df2288620f85e --- packages/SystemUI/src/com/android/systemui/qs/QSAnimator.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/SystemUI/src/com/android/systemui/qs/QSAnimator.java b/packages/SystemUI/src/com/android/systemui/qs/QSAnimator.java index 6137349e179f1..10805d8fd7876 100644 --- a/packages/SystemUI/src/com/android/systemui/qs/QSAnimator.java +++ b/packages/SystemUI/src/com/android/systemui/qs/QSAnimator.java @@ -110,7 +110,7 @@ public class QSAnimator implements Callback, PageListener, Listener, OnLayoutCha clearAnimationState(); } } else if (MOVE_FULL_ROWS.equals(key)) { - mFullRows = newValue != null && Integer.parseInt(newValue) != 0; + mFullRows = newValue == null || Integer.parseInt(newValue) != 0; } else if (QuickQSPanel.NUM_QUICK_TILES.equals(key)) { mNumQuickTiles = QuickQSPanel.getNumQuickTiles(mQsContainer.getContext()); clearAnimationState();