Merge "Avoid automatically mirroring Drawable of CustomTile" am: 9a904d68c7

am: 9531933797

Change-Id: I73b8c40a628dde30e1ec647b24ae21956e33f9cc
This commit is contained in:
Yoshinori Hirano
2016-10-17 17:12:42 +00:00
committed by android-build-merger
2 changed files with 4 additions and 1 deletions

View File

@@ -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);
}

View File

@@ -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