Merge "Flip the default on whether to keep rows together" into nyc-dev

This commit is contained in:
Jason Monk
2016-03-08 21:48:34 +00:00
committed by Android (Google) Code Review

View File

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