From 2be7d92879a14b82cc58631cfb627b28e94fe901 Mon Sep 17 00:00:00 2001 From: Oj Date: Sun, 17 Apr 2022 22:58:03 +0100 Subject: [PATCH] [Splash > Backend] Minor source tweak --- src/splash/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/splash/index.js b/src/splash/index.js index 418492c..2a5ad6a 100644 --- a/src/splash/index.js +++ b/src/splash/index.js @@ -72,7 +72,7 @@ const launchSplash = (startMin) => { if (process.platform !== 'darwin') win.on('closed', () => !launchedMainWindow && app.quit()); - if (!startMin) win.once('ready-to-show', () => win.show()); + if (!startMin) win.once('ready-to-show', win.show); };