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

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

Merge "Fix battery warning color lookup" into oc-dev

am: 834c260e

Change-Id: Ic29ab89382f4d44e0777d3440ebbe7581a367220
parents a5b0d84e 834c260e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -101,7 +101,7 @@ public class BatteryMeterDrawableBase extends Drawable {
        for (int i=0; i < N; i++) {
            mColors[2 * i] = levels.getInt(i, 0);
            if (colors.getType(i) == TypedValue.TYPE_ATTRIBUTE) {
                mColors[2 * i + 1] = Utils.getColorAttr(context, colors.getResourceId(i, 0));
                mColors[2 * i + 1] = Utils.getColorAttr(context, colors.getThemeAttributeId(i, 0));
            } else {
                mColors[2 * i + 1] = colors.getColor(i, 0);
            }