inventory-items-2 #44
23
app/main.ts
23
app/main.ts
@ -96,6 +96,29 @@ function createWindow(): BrowserWindow {
|
||||
click: () => {
|
||||
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")
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user