Open
Description
I can't prevent from the window to close from the window red close button, I want to prevent the close and instead just hide the window.
this is the code I'm trying:
browserWindow.on('close', (event) => {
event.preventDefault();
});
The event 'close' being fire but the window still being close.