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

Commit c1de7779 authored by Tony Wickham's avatar Tony Wickham Committed by Android (Google) Code Review
Browse files

Merge "Fix gap between notification dots and their shadows" into ub-launcher3-edmonton-polish

parents ae71e086 dfb785af
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -126,13 +126,13 @@ public class ShadowGenerator {
        }

        public Bitmap createPill(int width, int height) {
            radius = height / 2;
            radius = height / 2f;

            int centerX = Math.round(width / 2 + shadowBlur);
            int centerX = Math.round(width / 2f + shadowBlur);
            int centerY = Math.round(radius + shadowBlur + keyShadowDistance);
            int center = Math.max(centerX, centerY);
            bounds.set(0, 0, width, height);
            bounds.offsetTo(center - width / 2, center - height / 2);
            bounds.offsetTo(center - width / 2f, center - height / 2f);

            int size = center * 2;
            Bitmap result = Bitmap.createBitmap(size, size, Config.ARGB_8888);