We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 9933331 + 5244c93 commit 900e0baCopy full SHA for 900e0ba
services/java/com/android/server/power/DisplayPowerController.java
@@ -648,10 +648,10 @@ private void updatePowerState() {
648
mUsingScreenAutoBrightness = false;
649
}
650
if (mPowerRequest.screenState == DisplayPowerRequest.SCREEN_STATE_DIM) {
651
- // Dim slowly by at least some minimum amount.
+ // Dim quickly by at least some minimum amount.
652
target = Math.min(target - SCREEN_DIM_MINIMUM_REDUCTION,
653
mScreenBrightnessDimConfig);
654
- slow = true;
+ slow = false;
655
} else if (wasDim) {
656
// Brighten quickly.
657
slow = false;
0 commit comments