From 0c2c081ab0791cd815e924cca11373ff33327199 Mon Sep 17 00:00:00 2001 From: Amelia Frost Date: Mon, 6 Apr 2026 00:14:31 -0700 Subject: [PATCH] Focus on the main window when the about window is closed --- src/native/about.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/native/about.ts b/src/native/about.ts index 6a3999f..307379e 100644 --- a/src/native/about.ts +++ b/src/native/about.ts @@ -46,6 +46,8 @@ export function createAboutWindow() { }); aboutWindow.on("closed", () => { + mainWindow.show(); + mainWindow.focus(); aboutWindow = null; });