diff options
| author | 2021-02-09 19:28:30 +0000 | |
|---|---|---|
| committer | 2021-02-09 19:28:30 +0000 | |
| commit | 22df308fc99f83e2cee7895565dcf46693dbb17c (patch) | |
| tree | 74b8099fa18eaa2972c7f3a1c91d58502baf1f80 | |
| parent | 325e0f94eba1e2e78ed0195c6d45324ad3f12188 (diff) | |
| parent | 347a88a1906e49afc2decc46cee3a22ce4f3daa5 (diff) | |
Merge "Fix animation when using side labels" into sc-dev
| -rw-r--r-- | packages/SystemUI/src/com/android/systemui/qs/QSAnimator.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/SystemUI/src/com/android/systemui/qs/QSAnimator.java b/packages/SystemUI/src/com/android/systemui/qs/QSAnimator.java index d248ab544656..c8edaec98ee4 100644 --- a/packages/SystemUI/src/com/android/systemui/qs/QSAnimator.java +++ b/packages/SystemUI/src/com/android/systemui/qs/QSAnimator.java @@ -362,7 +362,7 @@ public class QSAnimator implements Callback, PageListener, Listener, OnLayoutCha if(view == parent || view == null) return; // Ignore tile pages as they can have some offset we don't want to take into account in // RTL. - if (!(view instanceof PagedTileLayout.TilePage)) { + if (!(view instanceof PagedTileLayout.TilePage || view instanceof SideLabelTileLayout)) { loc1[0] += view.getLeft(); loc1[1] += view.getTop(); } |