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

Commit 26d1a10f authored by Jason Monk's avatar Jason Monk
Browse files

Fix tinting on bitmap perm icons

Bug: 22043511
Change-Id: I3d42ef243840a4cc2103c3f1d6a63e1c0ff940c9
parent 8b664cac
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -118,7 +118,7 @@ public class Utils {
        Theme theme = context.getTheme();
        TypedValue typedValue = new TypedValue();
        theme.resolveAttribute(attr, typedValue, true);
        icon.clearColorFilter();
        icon = icon.mutate();
        icon.setTint(context.getColor(typedValue.resourceId));
        return icon;
    }