Loading packages/SystemUI/src/com/android/systemui/statusbar/policy/BrightnessController.java +1 −3 Original line number Diff line number Diff line Loading @@ -31,9 +31,7 @@ import android.widget.CompoundButton; public class BrightnessController implements ToggleSlider.Listener { private static final String TAG = "StatusBar.BrightnessController"; // Backlight range is from 0 - 255. Need to make sure that user // doesn't set the backlight to 0 and get stuck private static final int MINIMUM_BACKLIGHT = android.os.Power.BRIGHTNESS_DIM + 10; private static final int MINIMUM_BACKLIGHT = android.os.Power.BRIGHTNESS_DIM; private static final int MAXIMUM_BACKLIGHT = android.os.Power.BRIGHTNESS_ON; private Context mContext; Loading Loading
packages/SystemUI/src/com/android/systemui/statusbar/policy/BrightnessController.java +1 −3 Original line number Diff line number Diff line Loading @@ -31,9 +31,7 @@ import android.widget.CompoundButton; public class BrightnessController implements ToggleSlider.Listener { private static final String TAG = "StatusBar.BrightnessController"; // Backlight range is from 0 - 255. Need to make sure that user // doesn't set the backlight to 0 and get stuck private static final int MINIMUM_BACKLIGHT = android.os.Power.BRIGHTNESS_DIM + 10; private static final int MINIMUM_BACKLIGHT = android.os.Power.BRIGHTNESS_DIM; private static final int MAXIMUM_BACKLIGHT = android.os.Power.BRIGHTNESS_ON; private Context mContext; Loading