turn on fillets UI in prod (#6474)

* turn on fillets

* delete status property re-Pierre

---------

Co-authored-by: Pierre Jacquier <pierrejacquier39@gmail.com>
This commit is contained in:
Kurt Hutten
2025-04-25 07:22:28 +10:00
committed by GitHub
parent 8589f8fc5f
commit bd1e68a4c8
2 changed files with 2 additions and 4 deletions

View File

@ -742,7 +742,6 @@ export const modelingMachineCommandConfig: StateMachineCommandSetConfig<
Fillet: {
description: 'Fillet edge',
icon: 'fillet3d',
status: 'development',
needsReview: true,
args: {
nodeToEdit: {
@ -772,7 +771,6 @@ export const modelingMachineCommandConfig: StateMachineCommandSetConfig<
Chamfer: {
description: 'Chamfer edge',
icon: 'chamfer3d',
status: 'development',
needsReview: true,
args: {
nodeToEdit: {

View File

@ -190,7 +190,7 @@ export const toolbarConfig: Record<ToolbarModeName, ToolbarMode> = {
data: { name: 'Fillet', groupId: 'modeling' },
}),
icon: 'fillet3d',
status: DEV || IS_NIGHTLY_OR_DEBUG ? 'available' : 'kcl-only',
status: 'available',
title: 'Fillet',
hotkey: 'F',
description: 'Round the edges of a 3D solid.',
@ -204,7 +204,7 @@ export const toolbarConfig: Record<ToolbarModeName, ToolbarMode> = {
data: { name: 'Chamfer', groupId: 'modeling' },
}),
icon: 'chamfer3d',
status: DEV || IS_NIGHTLY_OR_DEBUG ? 'available' : 'kcl-only',
status: 'available',
title: 'Chamfer',
hotkey: 'C',
description: 'Bevel the edges of a 3D solid.',