From baeb3c2c631923958ffc83baac36c10e221c74c1 Mon Sep 17 00:00:00 2001 From: Salah Benmoussati <51402489+sbenmoussati@users.noreply.github.com> Date: Thu, 17 Feb 2022 10:08:09 +0100 Subject: [PATCH] SDA-3532 Snipping tool should remain on the top on Windows and MacOS (#1348) --- src/app/window-handler.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/window-handler.ts b/src/app/window-handler.ts index 0ae999cb..9c391ebb 100644 --- a/src/app/window-handler.ts +++ b/src/app/window-handler.ts @@ -1250,7 +1250,7 @@ export class WindowHandler { opts.alwaysOnTop = true; } - if (isWindowsOS && this.mainWindow) { + if (this.mainWindow) { opts.parent = this.mainWindow; }