Focus on the main window when the about window is closed

This commit is contained in:
Amelia Frost 2026-04-06 00:14:31 -07:00
parent 35ee57483a
commit 0c2c081ab0
No known key found for this signature in database

View file

@ -46,6 +46,8 @@ export function createAboutWindow() {
});
aboutWindow.on("closed", () => {
mainWindow.show();
mainWindow.focus();
aboutWindow = null;
});