We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents caf813f + 336a1bc commit 0c26976Copy full SHA for 0c26976
packages/SystemUI/src/com/android/systemui/statusbar/policy/BrightnessController.java
@@ -31,9 +31,7 @@
31
public class BrightnessController implements ToggleSlider.Listener {
32
private static final String TAG = "StatusBar.BrightnessController";
33
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;
+ private static final int MINIMUM_BACKLIGHT = android.os.Power.BRIGHTNESS_DIM;
37
private static final int MAXIMUM_BACKLIGHT = android.os.Power.BRIGHTNESS_ON;
38
39
private Context mContext;
0 commit comments