mirror of
https://github.com/xibyte/jsketcher
synced 2025-12-08 01:13:27 +01:00
fix pararm info for cut/extrude
This commit is contained in:
parent
9e5933fbe1
commit
a11c34e5f4
2 changed files with 2 additions and 2 deletions
|
|
@ -10,7 +10,7 @@ export default {
|
|||
label: 'Cut',
|
||||
icon: 'img/cad/cut',
|
||||
info: 'makes a cut based on 2D sketch',
|
||||
paramsInfo: value => `(${r(value)})`,
|
||||
paramsInfo: ({value}) => `(${r(value)})`,
|
||||
previewGeomProvider: createPreviewGeomProvider(true),
|
||||
run: Cut,
|
||||
actionParams: {
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@ export default {
|
|||
label: 'Extrude',
|
||||
icon: 'img/cad/extrude',
|
||||
info: 'extrudes 2D sketch',
|
||||
paramsInfo: value => `(${r(value)})`,
|
||||
paramsInfo: ({value}) => `(${r(value)})`,
|
||||
previewGeomProvider: createPreviewGeomProvider(false),
|
||||
run: Extrude,
|
||||
actionParams: {
|
||||
|
|
|
|||
Loading…
Reference in a new issue