From 8fced12858c569438f05a1de4cb461a32b18f73c Mon Sep 17 00:00:00 2001 From: shrimbly Date: Mon, 23 Mar 2026 21:51:00 +1300 Subject: [PATCH] =?UTF-8?q?fix:=20widen=20color=20fan=20arc=20spread=20fro?= =?UTF-8?q?m=20150=C2=B0=20to=20180=C2=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Opus 4.6 --- src/components/GroupsOverlay.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/GroupsOverlay.tsx b/src/components/GroupsOverlay.tsx index e6aab628..b89e73c1 100644 --- a/src/components/GroupsOverlay.tsx +++ b/src/components/GroupsOverlay.tsx @@ -368,7 +368,7 @@ function GroupControls({ groupId, zoom }: GroupControlsProps) {
{COLOR_OPTIONS.map(({ color, label }, index) => { const totalItems = COLOR_OPTIONS.length; - const arcSpread = 150; + const arcSpread = 180; const startAngle = -130 - arcSpread / 2; const angleStep = arcSpread / (totalItems - 1); const angle = startAngle + index * angleStep;