diff --git a/src/lib/commandBarConfigs/modelingCommandConfig.ts b/src/lib/commandBarConfigs/modelingCommandConfig.ts index 5e239c3a4..8cc5b41de 100644 --- a/src/lib/commandBarConfigs/modelingCommandConfig.ts +++ b/src/lib/commandBarConfigs/modelingCommandConfig.ts @@ -478,7 +478,7 @@ export const modelingMachineCommandConfig: StateMachineCommandSetConfig< required: true, defaultValue: 'Axis', options: [ - { name: 'Axis', isCurrent: true, value: 'Axis' }, + { name: 'Sketch Axis', isCurrent: true, value: 'Axis' }, { name: 'Edge', isCurrent: false, value: 'Edge' }, ], hidden: (context) => Boolean(context.argumentsToSubmit.nodeToEdit), @@ -489,6 +489,7 @@ export const modelingMachineCommandConfig: StateMachineCommandSetConfig< commandContext.argumentsToSubmit.axisOrEdge as string ), inputType: 'options', + displayName: 'Sketch Axis', options: [ { name: 'X Axis', isCurrent: true, value: 'X' }, { name: 'Y Axis', isCurrent: false, value: 'Y' },