From 42ecb126145eddebe0ebe7f5ae5ea303ef40ac05 Mon Sep 17 00:00:00 2001 From: Diego Prado Gesto Date: Tue, 8 May 2018 11:16:00 +0200 Subject: [PATCH] CURA-5164 Fix typo in the method signature --- cura/CuraApplication.py | 4 ++-- cura_app.py | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) 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()