From 65341a3b629b592157bead49d7e1bf85cd368c8d Mon Sep 17 00:00:00 2001 From: Johan Kwarnmark Date: Fri, 4 Dec 2020 16:22:51 +0100 Subject: [PATCH] If screen picker window is closed, close the red frame --- src/app/window-handler.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/app/window-handler.ts b/src/app/window-handler.ts index f8f309ab..369cf677 100644 --- a/src/app/window-handler.ts +++ b/src/app/window-handler.ts @@ -1194,6 +1194,7 @@ export class WindowHandler { } }); this.screenPickerWindow.once('closed', () => { + this.execCmd(this.screenShareIndicatorFrameUtil, []); this.removeWindow(opts.winKey); this.screenPickerWindow = null; });