quickshell: flip concave ear to bottom-left direction

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
rope 2026-05-27 10:11:36 +01:00
parent 88c5aa4261
commit 71d5f0368e

View file

@ -1304,8 +1304,8 @@ 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(8, 0); ctx.lineTo(8, 8); ctx.lineTo(0, 8); ctx.moveTo(0, 0); ctx.lineTo(8, 0); ctx.lineTo(8, 8);
ctx.arc(0, 0, 8, Math.PI / 2, 0, true); ctx.arc(0, 8, 8, 0, -Math.PI / 2, false);
ctx.closePath(); ctx.fill(); ctx.closePath(); ctx.fill();
} }
} }