Merge "Make sure we don't accidentally allow the night mode tile" into nyc-dev

This commit is contained in:
TreeHugger Robot
2016-06-13 21:13:35 +00:00
committed by Android (Google) Code Review

View File

@@ -80,14 +80,16 @@ public class AutoTileManager {
new NightModeController.Listener() {
@Override
public void onNightModeChanged() {
mHost.addTile("night");
Prefs.putBoolean(mContext, Key.QS_NIGHT_ADDED, true);
mHandler.post(new Runnable() {
@Override
public void run() {
mHost.getNightModeController().removeListener(mNightModeListener);
}
});
if (mHost.getNightModeController().isEnabled()) {
mHost.addTile("night");
Prefs.putBoolean(mContext, Key.QS_NIGHT_ADDED, true);
mHandler.post(new Runnable() {
@Override
public void run() {
mHost.getNightModeController().removeListener(mNightModeListener);
}
});
}
}
@Override