You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
WebCAD/src/Add-on/Command_Option.ts

13 lines
435 B

import { app } from "../ApplicationServices/Application";
5 years ago
import { Command } from "../Editor/CommandMachine";
import { ConfigDialog, ConfigStore } from "../UI/Components/Modal/OptionModal/ConfigDialog";
export class Command_Options implements Command
{
async exec()
{
let OptionStore = ConfigStore.GetInstance() as ConfigStore;
app.Editor.ModalManage.RenderModal(ConfigDialog, { store: OptionStore });
}
}