Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 680e7711 authored by Joe Onorato's avatar Joe Onorato Committed by Android Git Automerger
Browse files

am 2cd06609: Merge "Fix typo that causes brigtness to be wrong." into honeycomb

* commit '2cd06609':
  Fix typo that causes brigtness to be wrong.
parents 9c01f219 2cd06609
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -80,7 +80,7 @@ public class BrightnessController implements ToggleSlider.Listener {
        setMode(automatic ? Settings.System.SCREEN_BRIGHTNESS_MODE_AUTOMATIC
                : Settings.System.SCREEN_BRIGHTNESS_MODE_MANUAL);
        if (!automatic) {
            final int val = value + value + MINIMUM_BACKLIGHT;
            final int val = value + MINIMUM_BACKLIGHT;
            setBrightness(val);
            if (!tracking) {
                AsyncTask.execute(new Runnable() {