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

Commit 9c44459b authored by Jason Monk's avatar Jason Monk Committed by android-build-merger
Browse files

Merge "Fix battery icon tint in QS during battery saver" into oc-dev am: 0b9e1e7f

am: 04a1e632

Change-Id: I4aed481f190f3d43b9c86ff16885e3e833a57e6c
parents 09dae065 04a1e632
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -240,7 +240,7 @@ public class BatteryMeterDrawableBase extends Drawable {
    private int getColorForLevel(int percent) {
        // If we are in power save mode, always use the normal color.
        if (mPowerSaveEnabled) {
            return mColors[mColors.length - 1];
            return mIconTint;
        }
        int thresh, color = 0;
        for (int i = 0; i < mColors.length; i += 2) {