Merge "Make sure we don't accidentally allow the night mode tile" into nyc-dev
This commit is contained in:
committed by
Android (Google) Code Review
commit
126366dde5
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user