From 145c28bbd5cdfb6af83b23cde203caf9a798c54d Mon Sep 17 00:00:00 2001 From: Pierre Jacquier Date: Mon, 28 Apr 2025 10:32:43 -0400 Subject: [PATCH] Remove unused Arc button from toolbar (#6539) --- src/lib/toolbar.ts | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/src/lib/toolbar.ts b/src/lib/toolbar.ts index f846b1f09..2b4c25eed 100644 --- a/src/lib/toolbar.ts +++ b/src/lib/toolbar.ts @@ -585,24 +585,6 @@ export const toolbarConfig: Record = { links: [], isActive: (state) => state.matches({ Sketch: 'Tangential arc to' }), }, - { - id: 'arc', - onClick: ({ modelingState, modelingSend }) => - modelingSend({ - type: 'change tool', - data: { - tool: !modelingState.matches({ Sketch: 'Arc tool' }) - ? 'arc' - : 'none', - }, - }), - icon: 'arc', - status: DEV ? 'available' : 'unavailable', - title: 'Arc', - description: 'Start drawing an arc', - links: [], - isActive: (state) => state.matches({ Sketch: 'Arc tool' }), - }, ], }, 'break',