Added proper export BREP SVG icon

This commit is contained in:
Mike Molinari 2022-12-29 05:50:46 +00:00
parent 0066b414f8
commit c636d5d61b
2 changed files with 3 additions and 1 deletions

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 5.8 KiB

View file

@ -3,6 +3,7 @@ import {ApplicationContext} from "cad/context";
import {EntityKind} from "cad/model/entities";
import {ActionDefinition} from "cad/actions/actionSystemBundle";
import { MEdge } from "cad/model/medge";
import icon from "./ExportBREP.svg"
interface ExportBREPParams {
@ -12,7 +13,7 @@ interface ExportBREPParams {
export const ExportBREP: any = {
id: 'EXPORT_BREP',
label: 'EXPORT BREP',
icon: 'img/cad/extrude',
icon: icon,
info: 'EXPORT BREP FILE CONTAINING SELECTED BODIES',
path:__dirname,
run: async (params: any, ctx: ApplicationContext) => {