diff --git a/modules/workbenches/modeler/features/moveBody/moveBody.operation.ts b/modules/workbenches/modeler/features/moveBody/moveBody.operation.ts index c5630374..f5fde31c 100644 --- a/modules/workbenches/modeler/features/moveBody/moveBody.operation.ts +++ b/modules/workbenches/modeler/features/moveBody/moveBody.operation.ts @@ -4,6 +4,7 @@ import {OperationDescriptor} from "cad/craft/operationBundle"; import {SetLocation} from "cad/craft/e0/interact"; import {MDatum} from "cad/model/mdatum"; import { MShell } from 'cad/model/mshell'; +import icon from "./MOVE-BODY.svg"; interface MoveBodyParams { datum: MDatum; @@ -13,7 +14,7 @@ interface MoveBodyParams { export const MoveBodyOperation: OperationDescriptor = { id: 'MOVE_BODY', label: 'Move Body', - icon: 'img/cad/moveBody', + icon, info: 'Move Body', path:__dirname, paramsInfo: () => '',