mirror of
https://github.com/xibyte/jsketcher
synced 2025-12-15 04:45:06 +01:00
keep boolean label for union/subtract/intersect initiating operations
This commit is contained in:
parent
4eb4d5154c
commit
8ecec9c109
1 changed files with 3 additions and 3 deletions
|
|
@ -17,7 +17,7 @@ const selectionMode = {
|
|||
|
||||
export const intersectionOperation = {
|
||||
id: 'INTERSECTION',
|
||||
label: 'intersection',
|
||||
label: 'boolean',
|
||||
icon: 'img/cad/intersection',
|
||||
info: 'intersection operation on two shells',
|
||||
paramsInfo,
|
||||
|
|
@ -29,7 +29,7 @@ export const intersectionOperation = {
|
|||
|
||||
export const subtractOperation = {
|
||||
id: 'SUBTRACT',
|
||||
label: 'subtract',
|
||||
label: 'boolean',
|
||||
icon: 'img/cad/subtract',
|
||||
info: 'subtract operation on two shells',
|
||||
paramsInfo,
|
||||
|
|
@ -41,7 +41,7 @@ export const subtractOperation = {
|
|||
|
||||
export const unionOperation = {
|
||||
id: 'UNION',
|
||||
label: 'union',
|
||||
label: 'boolean',
|
||||
icon: 'img/cad/union',
|
||||
info: 'union operation on two shells',
|
||||
paramsInfo,
|
||||
|
|
|
|||
Loading…
Reference in a new issue