diff --git a/freechat-client/main.js b/freechat-client/main.js index 7405778..28b3d75 100644 --- a/freechat-client/main.js +++ b/freechat-client/main.js @@ -11,12 +11,12 @@ function createWin() { } }) win.loadFile('index.html'); - //win.webContents.openDevTools() + if(process.platform !== 'darwin') { + win.removeMenu(); + } win.on('closed', () => { win = null }); - - } app.on('ready', createWin); // on mac just because the windows are closed doesn't mean the application is too