From 18940eaee1b42adc71a1a5b95de56032b3f3fb41 Mon Sep 17 00:00:00 2001 From: shrimbly Date: Mon, 23 Mar 2026 21:49:54 +1300 Subject: [PATCH] =?UTF-8?q?fix:=20rotate=20color=20fan=2020=C2=B0=20anti-c?= =?UTF-8?q?lockwise=20to=20wrap=20around=20menu=20corner?= 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 afe274c3..2477436e 100644 --- a/src/components/GroupsOverlay.tsx +++ b/src/components/GroupsOverlay.tsx @@ -369,7 +369,7 @@ function GroupControls({ groupId, zoom }: GroupControlsProps) { {COLOR_OPTIONS.map(({ color, label }, index) => { const totalItems = COLOR_OPTIONS.length; const arcSpread = 150; - const startAngle = -90 - arcSpread / 2; + const startAngle = -110 - arcSpread / 2; const angleStep = arcSpread / (totalItems - 1); const angle = startAngle + index * angleStep; const radius = 55;