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

Commit 3e0dc645 authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Set max alpha for dot color" into qt-dev

parents ccc7759b 3fd6e6f2
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -23,6 +23,7 @@ import android.graphics.Rect;
import android.util.AttributeSet;
import android.widget.ImageView;

import com.android.internal.graphics.ColorUtils;
import com.android.systemui.R;

/**
@@ -101,7 +102,7 @@ public class BadgedImageView extends ImageView {
     * The colour to use for the dot.
     */
    public void setDotColor(int color) {
        mUpdateDotColor = color;
        mUpdateDotColor = ColorUtils.setAlphaComponent(color, 255 /* alpha */);
        invalidate();
    }