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

Commit 5c86fc7a authored by Yoshinori Hirano's avatar Yoshinori Hirano Committed by android-build-merger
Browse files

Merge "Avoid automatically mirroring Drawable of CustomTile" am: 9a904d68 am: 95319337

am: b66feeff

Change-Id: Idf7e4429338e90841ec1fb78381b2c7c8c638092
parents 7566520f b66feeff
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -130,6 +130,7 @@ public class TileQueryHelper {
        state.label = label;
        state.contentDescription = label;
        state.icon = new DrawableIcon(drawable);
        state.autoMirrorDrawable = false;
        addTile(spec, appLabel, state, false);
    }

+3 −1
Original line number Diff line number Diff line
@@ -221,7 +221,9 @@ public class CustomTile extends QSTile<QSTile.State> implements TileChangeListen

    @Override
    public State newTileState() {
        return new State();
        State state = new State();
        state.autoMirrorDrawable = false;
        return state;
    }

    @Override