From 1ec875445607306e0a8e344e98bd64e782182cfd Mon Sep 17 00:00:00 2001 From: Veronica Berglyd Olsen <1619840+vkbo@users.noreply.github.com> Date: Fri, 25 Apr 2025 18:55:50 +0200 Subject: [PATCH] Delete the splash screen when done --- novelwriter/__init__.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/novelwriter/__init__.py b/novelwriter/__init__.py index c118437b..0e0bb87b 100644 --- a/novelwriter/__init__.py +++ b/novelwriter/__init__.py @@ -285,6 +285,8 @@ def main(sysArgs: list | None = None) -> GuiMain | None: splash.finish(nwGUI) CONFIG.finishStartup() + del splash + nwGUI.postLaunchTasks(cmdOpen) sys.exit(app.exec())