diff options
| author | 2017-03-27 15:45:32 -0400 | |
|---|---|---|
| committer | 2017-03-28 17:16:22 +0000 | |
| commit | d686e9c26e84e56810fcf87f6002ba8ba2b3f0c5 (patch) | |
| tree | 15eb72ffa4d1bc63334308dae02306f50173e720 | |
| parent | 52e5e75313456ddc7b8f1ddfeaf8d12ffff2ce9f (diff) | |
Don't auto-mirror QS drawables
Was a mistake in previous refactor, they were not being mirrored
before.
Test: visual
Change-Id: I001757ca02267e33409a9c0071a24b69939f30c5
Fixes: 36255688
Fixes: 36255681
(cherry picked from commit 19378fd3ebdc51718993dac065d68b286a03d90a)
| -rw-r--r-- | packages/SystemUI/src/com/android/systemui/qs/tileimpl/QSIconViewImpl.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/SystemUI/src/com/android/systemui/qs/tileimpl/QSIconViewImpl.java b/packages/SystemUI/src/com/android/systemui/qs/tileimpl/QSIconViewImpl.java index a751ef465147..5be1ec6ef4e8 100644 --- a/packages/SystemUI/src/com/android/systemui/qs/tileimpl/QSIconViewImpl.java +++ b/packages/SystemUI/src/com/android/systemui/qs/tileimpl/QSIconViewImpl.java @@ -89,7 +89,7 @@ public class QSIconViewImpl extends QSIconView { : state.icon.getInvisibleDrawable(mContext) : null; int padding = state.icon != null ? state.icon.getPadding() : 0; if (d != null) { - d.setAutoMirrored(true); + d.setAutoMirrored(false); } iv.setImageDrawable(d); iv.setTag(R.id.qs_icon_tag, state.icon); |