jsketcher/web/app/3d/actions/core-actions.js
2016-10-14 01:19:06 -07:00

25 lines
No EOL
536 B
JavaScript

export const refreshSketches = {
cssIcons: ['refresh'],
label: 'Refresh Sketches',
info: 'refresh all visible sketches',
invoke: (app) => app.refreshSketches()
};
export const info = {
cssIcons: ['info-circle'],
label: 'info',
info: 'opens help dialog',
invoke: (app) => app.showInfo()
};
export const showSketches = {
type: 'binary',
property: 'showSketches',
cssIcons: ['image'],
label: 'show sketches',
info: 'toggle whether show sketches on a solid face'
};
export const noIcon = {
label: 'no icon'
};