CURA-5164 Fix typo in the method signature

This commit is contained in:
Diego Prado Gesto 2018-05-08 11:16:00 +02:00
parent 051dd7a6e9
commit 42ecb12614
2 changed files with 4 additions and 4 deletions

View file

@ -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")))

View file

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