From 7234f3fce244d54a8beed36e3f17bd13c9ef6245 Mon Sep 17 00:00:00 2001 From: Kiran Niranjan Date: Thu, 30 Nov 2023 12:01:02 +0530 Subject: [PATCH] SDA-4256 - Fix placement issue (#2022) --- src/app/window-utils.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/window-utils.ts b/src/app/window-utils.ts index 410d20c0a..4ec545123 100644 --- a/src/app/window-utils.ts +++ b/src/app/window-utils.ts @@ -1454,6 +1454,6 @@ export const hideFullscreenWindow = (window: BrowserWindow) => { window.hide(); }, 0); } - window.setFullScreen(false); }); + window.setFullScreen(false); };