Change warning message on Chamfer for a more discreet note in tooltip (#7002)
This commit is contained in:
@ -46,6 +46,7 @@ export type ToolbarItem = {
|
||||
| string
|
||||
| ((state: StateFrom<typeof modelingMachine>) => string | string[])
|
||||
description: string
|
||||
extraNote?: string
|
||||
links: { label: string; url: string }[]
|
||||
isActive?: (state: StateFrom<typeof modelingMachine>) => boolean
|
||||
disabledReason?:
|
||||
@ -208,7 +209,15 @@ export const toolbarConfig: Record<ToolbarModeName, ToolbarMode> = {
|
||||
title: 'Chamfer',
|
||||
hotkey: 'C',
|
||||
description: 'Bevel the edges of a 3D solid.',
|
||||
links: [{ label: 'KCL docs', url: 'https://zoo.dev/docs/kcl/chamfer' }],
|
||||
extraNote:
|
||||
'Chamfers cannot touch other chamfers yet. This is under development, see issue tracker.',
|
||||
links: [
|
||||
{
|
||||
label: 'issue tracker',
|
||||
url: 'https://github.com/KittyCAD/modeling-app/issues/6617',
|
||||
},
|
||||
{ label: 'KCL docs', url: 'https://zoo.dev/docs/kcl/chamfer' },
|
||||
],
|
||||
},
|
||||
{
|
||||
id: 'shell',
|
||||
|
Reference in New Issue
Block a user