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

Commit d686e9c2 authored by Jason Monk's avatar Jason Monk
Browse files

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 19378fd3)
parent 52e5e753
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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);