From 925b2fcc32ef758bbc7dc7ce328f7b8775caf8b9 Mon Sep 17 00:00:00 2001 From: Devin Binnie <52460000+devinbinnie@users.noreply.github.com> Date: Mon, 8 May 2023 10:10:36 -0400 Subject: [PATCH] Fixed issue where launching the app a second time wouldn't show the main window if it was hidden. (#2712) --- src/main/app/app.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main/app/app.ts b/src/main/app/app.ts index 974381d9..ffae71d3 100644 --- a/src/main/app/app.ts +++ b/src/main/app/app.ts @@ -29,6 +29,7 @@ export function handleAppSecondInstance(event: Event, argv: string[]) { // Protocol handler for win32 // argv: An array of the second instance’s (command line / deep linked) arguments + MainWindow.show(); const deeplinkingURL = getDeeplinkingURL(argv); if (deeplinkingURL) { openDeepLink(deeplinkingURL);