diff options
author | neauoire <[email protected]> | 2020-02-13 12:29:15 -0500 |
---|---|---|
committer | neauoire <[email protected]> | 2020-02-13 12:29:15 -0500 |
commit | 522e33096da6d8f3d63a06211d004ba5276591c9 (patch) | |
tree | 5ecf34eabf423a052e77697c7d78b963f559b716 /desktop/main.js | |
parent | 0b903cc6bacc4cd6fb9b2042acc1ed651a717f66 (diff) | |
download | Orca-522e33096da6d8f3d63a06211d004ba5276591c9.tar.gz Orca-522e33096da6d8f3d63a06211d004ba5276591c9.zip |
Fixed issue where the write command was closing the commander
Diffstat (limited to 'desktop/main.js')
-rw-r--r-- | desktop/main.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/desktop/main.js b/desktop/main.js index 0693125..e104175 100644 --- a/desktop/main.js +++ b/desktop/main.js @@ -18,7 +18,7 @@ app.on('ready', () => { backgroundColor: '#000', icon: path.join(__dirname, { darwin: 'icon.icns', linux: 'icon.png', win32: 'icon.ico' }[process.platform] || 'icon.ico'), resizable: true, - frame: process.platform !== 'darwin', + frame: false, skipTaskbar: process.platform === 'darwin', autoHideMenuBar: process.platform === 'darwin', webPreferences: { zoomFactor: 1.0, nodeIntegration: true, backgroundThrottling: false } |