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

Commit bb769059 authored by Jason Monk's avatar Jason Monk
Browse files

Fix battery icon tint in QS during battery saver

Test: visual
Change-Id: Id844604bfe0de141563781678980da774cc87ebc
Fixes: 37433416
parent f37b2718
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) {