Merge "Avoid automatically mirroring Drawable of CustomTile"
This commit is contained in:
@@ -131,6 +131,7 @@ public class TileQueryHelper {
|
||||
state.label = label;
|
||||
state.contentDescription = label;
|
||||
state.icon = new DrawableIcon(drawable);
|
||||
state.autoMirrorDrawable = false;
|
||||
addTile(spec, appLabel, state, false);
|
||||
}
|
||||
|
||||
|
||||
@@ -214,7 +214,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
|
||||
|
||||
Reference in New Issue
Block a user