Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xcura/CuraApplication.py4
-rwxr-xr-xcura_app.py4
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()