Commit 0f4db3f5 authored by Joel Collins's avatar Joel Collins
Browse files

Only draw CET by default on Windows

parent 6a172911
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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