diff --git a/cura/CuraApplication.py b/cura/CuraApplication.py index 47b2dd25bf..b8c417d8d3 100755 --- a/cura/CuraApplication.py +++ b/cura/CuraApplication.py @@ -406,8 +406,8 @@ class CuraApplication(QtApplication): ) # Runs preparations that needs to be done before the starting process. - def startSlashWindowPhase(self): - super().startSlashWindowPhase() + def startSplashWindowPhase(self): + super().startSplashWindowPhase() self.setWindowIcon(QIcon(Resources.getPath(Resources.Images, "cura-icon.png"))) diff --git a/cura_app.py b/cura_app.py index 18f9b6365f..1495a9e526 100755 --- a/cura_app.py +++ b/cura_app.py @@ -125,7 +125,7 @@ app.addCommandLineOptions() app.parseCliOptions() app.initialize() -app.startSlashWindowPhase() -app.startPostSlashWindowPhase() +app.startSplashWindowPhase() +app.startPostSplashWindowPhase() app.run()