(Re)Enable context menu interactions
Some checks failed
E2E Testing / test (push) Failing after 1m29s
Some checks failed
E2E Testing / test (push) Failing after 1m29s
This commit is contained in:
parent
751d998625
commit
2a02ec9338
@ -150,6 +150,12 @@ export class AppComponent implements OnInit{
|
|||||||
this.electronService.ipcRenderer.on('open-project', (event: any, loadedProject: StoredGameModel) => {
|
this.electronService.ipcRenderer.on('open-project', (event: any, loadedProject: StoredGameModel) => {
|
||||||
this.onLoadProject(loadedProject);
|
this.onLoadProject(loadedProject);
|
||||||
})
|
})
|
||||||
|
|
||||||
|
this.electronService.ipcRenderer.on('context-menu', (event: any, message: string) => {
|
||||||
|
console.log("Context Menu triggered")
|
||||||
|
this.onContextMenuMessageRecieved(message);
|
||||||
|
})
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user