quickshell: rewrite bottom-right concave ear from scratch

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
rope 2026-05-27 10:17:18 +01:00
parent a5f5e32963
commit b3266306af

View file

@ -1304,9 +1304,11 @@ in
ctx.clearRect(0, 0, 8, 8); ctx.clearRect(0, 0, 8, 8);
ctx.fillStyle = Theme.barBg; ctx.fillStyle = Theme.barBg;
ctx.beginPath(); ctx.beginPath();
ctx.moveTo(0, 0); ctx.lineTo(8, 0); ctx.lineTo(8, 8); ctx.moveTo(0, 8);
ctx.arc(0, 8, 8, 0, -Math.PI / 2, false); ctx.lineTo(8, 8);
ctx.closePath(); ctx.fill(); ctx.lineTo(8, 0);
ctx.arc(0, 0, 8, 0, Math.PI / 2, false);
ctx.fill();
} }
} }
} }