Loading app/store.js +1 −1 Original line number Diff line number Diff line Loading @@ -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 Loading
app/store.js +1 −1 Original line number Diff line number Diff line Loading @@ -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