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:
@ -742,7 +742,6 @@ export const modelingMachineCommandConfig: StateMachineCommandSetConfig<
|
|||||||
Fillet: {
|
Fillet: {
|
||||||
description: 'Fillet edge',
|
description: 'Fillet edge',
|
||||||
icon: 'fillet3d',
|
icon: 'fillet3d',
|
||||||
status: 'development',
|
|
||||||
needsReview: true,
|
needsReview: true,
|
||||||
args: {
|
args: {
|
||||||
nodeToEdit: {
|
nodeToEdit: {
|
||||||
@ -772,7 +771,6 @@ export const modelingMachineCommandConfig: StateMachineCommandSetConfig<
|
|||||||
Chamfer: {
|
Chamfer: {
|
||||||
description: 'Chamfer edge',
|
description: 'Chamfer edge',
|
||||||
icon: 'chamfer3d',
|
icon: 'chamfer3d',
|
||||||
status: 'development',
|
|
||||||
needsReview: true,
|
needsReview: true,
|
||||||
args: {
|
args: {
|
||||||
nodeToEdit: {
|
nodeToEdit: {
|
||||||
|
@ -190,7 +190,7 @@ export const toolbarConfig: Record<ToolbarModeName, ToolbarMode> = {
|
|||||||
data: { name: 'Fillet', groupId: 'modeling' },
|
data: { name: 'Fillet', groupId: 'modeling' },
|
||||||
}),
|
}),
|
||||||
icon: 'fillet3d',
|
icon: 'fillet3d',
|
||||||
status: DEV || IS_NIGHTLY_OR_DEBUG ? 'available' : 'kcl-only',
|
status: 'available',
|
||||||
title: 'Fillet',
|
title: 'Fillet',
|
||||||
hotkey: 'F',
|
hotkey: 'F',
|
||||||
description: 'Round the edges of a 3D solid.',
|
description: 'Round the edges of a 3D solid.',
|
||||||
@ -204,7 +204,7 @@ export const toolbarConfig: Record<ToolbarModeName, ToolbarMode> = {
|
|||||||
data: { name: 'Chamfer', groupId: 'modeling' },
|
data: { name: 'Chamfer', groupId: 'modeling' },
|
||||||
}),
|
}),
|
||||||
icon: 'chamfer3d',
|
icon: 'chamfer3d',
|
||||||
status: DEV || IS_NIGHTLY_OR_DEBUG ? 'available' : 'kcl-only',
|
status: 'available',
|
||||||
title: 'Chamfer',
|
title: 'Chamfer',
|
||||||
hotkey: 'C',
|
hotkey: 'C',
|
||||||
description: 'Bevel the edges of a 3D solid.',
|
description: 'Bevel the edges of a 3D solid.',
|
||||||
|
Reference in New Issue
Block a user