diff --git a/src/lib/commandBarConfigs/modelingCommandConfig.ts b/src/lib/commandBarConfigs/modelingCommandConfig.ts index 35d38d049..6ef285da3 100644 --- a/src/lib/commandBarConfigs/modelingCommandConfig.ts +++ b/src/lib/commandBarConfigs/modelingCommandConfig.ts @@ -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: { diff --git a/src/lib/toolbar.ts b/src/lib/toolbar.ts index 2d619207b..f3909d0d7 100644 --- a/src/lib/toolbar.ts +++ b/src/lib/toolbar.ts @@ -190,7 +190,7 @@ export const toolbarConfig: Record = { 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 = { 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.',