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

Commit 973fc119 authored by Jay Aliomer's avatar Jay Aliomer Committed by Android (Google) Code Review
Browse files

Merge "Fix faint ripple" into tm-dev

parents 0536e035 475648ae
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1000,7 +1000,7 @@ public class RippleDrawable extends LayerDrawable {
    }

    private int clampAlpha(@ColorInt int color) {
        if (Color.alpha(color) > 128) {
        if (Color.alpha(color) < 128) {
            return  (color & 0x00FFFFFF) | 0x80000000;
        }
        return color;