Flip the default on whether to keep rows together

Bug: 27201532
Change-Id: Ib51ef4fb374ea197b4119fbd230df2288620f85e
This commit is contained in:
Jason Monk
2016-03-08 16:41:23 -05:00
parent be3696d425
commit 39a2e70d7e

View File

@@ -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();