Skip to content

Commit 0c26976

Browse files
dsandlerAndroid (Google) Code Review
authored andcommitted
Merge "Allow the quick settings panel to fully dim the display."
2 parents caf813f + 336a1bc commit 0c26976

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

packages/SystemUI/src/com/android/systemui/statusbar/policy/BrightnessController.java

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,7 @@
3131
public class BrightnessController implements ToggleSlider.Listener {
3232
private static final String TAG = "StatusBar.BrightnessController";
3333

34-
// Backlight range is from 0 - 255. Need to make sure that user
35-
// doesn't set the backlight to 0 and get stuck
36-
private static final int MINIMUM_BACKLIGHT = android.os.Power.BRIGHTNESS_DIM + 10;
34+
private static final int MINIMUM_BACKLIGHT = android.os.Power.BRIGHTNESS_DIM;
3735
private static final int MAXIMUM_BACKLIGHT = android.os.Power.BRIGHTNESS_ON;
3836

3937
private Context mContext;

0 commit comments

Comments
 (0)