Browse Source

CURA-5164 Fix typo in the method signature

Diego Prado Gesto 6 years ago
parent
commit
42ecb12614
2 changed files with 4 additions and 4 deletions
  1. 2 2
      cura/CuraApplication.py
  2. 2 2
      cura_app.py

+ 2 - 2
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")))
 

+ 2 - 2
cura_app.py

@@ -125,7 +125,7 @@ app.addCommandLineOptions()
 app.parseCliOptions()
 app.initialize()
 
-app.startSlashWindowPhase()
-app.startPostSlashWindowPhase()
+app.startSplashWindowPhase()
+app.startPostSplashWindowPhase()
 
 app.run()