From 825ed4daeb59fcd541726e574031c33530617df0 Mon Sep 17 00:00:00 2001 From: Ivan Prodanov Date: Mon, 14 Nov 2022 22:44:14 +0200 Subject: [PATCH] fix(2): The detached window cannot be moved on Win systems --- app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.js b/app.js index cca99fc..848a1e9 100644 --- a/app.js +++ b/app.js @@ -433,7 +433,7 @@ function createMainWindow(show = false) { show: false, skipTaskbar: !show, autoHideMenuBar: true, - frame: false, + frame: config.get('detachedMode') && process.platform !== 'darwin', webPreferences: { nodeIntegration: true, contextIsolation: false,