main #48

Closed
sebastian wants to merge 44 commits from main into inventory
Showing only changes of commit c66049c4d8 - Show all commits

View File

@ -96,6 +96,29 @@ function createWindow(): BrowserWindow {
click: () => { click: () => {
win!.webContents.send('context-menu', "new-character"); win!.webContents.send('context-menu', "new-character");
} }
},
{
label: "Itemgroup",
submenu: [
{
label: "Abstract Itemgroup",
click: () => {
win!.webContents.send('context-menu', "new-itemgroup_abstract")
}
},
{
label: "Concrete Itemgroup",
click: () => {
win!.webContents.send('context-menu', "new-itemgroup_concrete")
}
},
{
label: "Item",
click: () => {
win!.webContents.send("context-menu", "new-item")
}
}
]
} }
] ]