Only draw CET by default on Windows

This commit is contained in:
Joel Collins 2019-08-19 10:06:05 +01:00
parent 6a172911bd
commit 0f4db3f5d4

View file

@ -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