(Re)Enable context menu interactions
Some checks failed
E2E Testing / test (push) Failing after 1m29s

This commit is contained in:
Sebastian Böckelmann 2024-03-20 16:31:17 +01:00
parent 751d998625
commit 2a02ec9338

View File

@ -150,6 +150,12 @@ export class AppComponent implements OnInit{
this.electronService.ipcRenderer.on('open-project', (event: any, loadedProject: StoredGameModel) => {
this.onLoadProject(loadedProject);
})
this.electronService.ipcRenderer.on('context-menu', (event: any, message: string) => {
console.log("Context Menu triggered")
this.onContextMenuMessageRecieved(message);
})
}
}