diff --git a/app/store.js b/app/store.js index bd1a8b95..549a45f7 100644 --- a/app/store.js +++ b/app/store.js @@ -3,7 +3,7 @@ const store = new Store(); if (store.has('drawCustomTitleBar') !== true) { // Default to false if on MacOS, otherwise true - store.set('drawCustomTitleBar', (process.platform !== 'darwin') ? true : false) + store.set('drawCustomTitleBar', (process.platform === 'win32') ? true : false) } module.exports.store = store \ No newline at end of file