From 0f4db3f5d4bec0c1787c86e0c80fef2d30a7604f Mon Sep 17 00:00:00 2001 From: Joel Collins Date: Mon, 19 Aug 2019 10:06:05 +0100 Subject: [PATCH] Only draw CET by default on Windows --- app/store.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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