Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 0d034b54 authored by Jason Monk's avatar Jason Monk Committed by android-build-merger
Browse files

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

am: cf39c8de

* commit 'cf39c8de':
  Flip the default on whether to keep rows together
parents 336256e1 cf39c8de
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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();