mirror of
https://github.com/xibyte/jsketcher
synced 2025-12-24 01:15:25 +01:00
Added proper export BREP SVG icon
This commit is contained in:
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 |
|
|
@ -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) => {
|
||||
|
|
|
|||
Loading…
Reference in a new issue