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:
authorThomas Karl Pietrowski <thopiekar@googlemail.com>2016-06-06 08:36:30 +0300
committerThomas Karl Pietrowski <thopiekar@googlemail.com>2016-06-06 08:36:30 +0300
commite03c3b95c527347c92939257b44d8d450b41c929 (patch)
tree62a391d312cbf7c960ef097efb71597dd205cacf /cura/CuraSplashScreen.py
parentd6acb78bd4c310b5ded6180e6cc17394872672a6 (diff)
Splashscreen: Another (and last) correction
Now all the needed changes should be done.
Diffstat (limited to 'cura/CuraSplashScreen.py')
-rw-r--r--cura/CuraSplashScreen.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/cura/CuraSplashScreen.py b/cura/CuraSplashScreen.py
index 8f677986df..f2810d359b 100644
--- a/cura/CuraSplashScreen.py
+++ b/cura/CuraSplashScreen.py
@@ -23,7 +23,7 @@ class CuraSplashScreen(QSplashScreen):
version = Application.getInstance().getVersion().split("-")
buildtype = Application.getInstance().getBuildType()
if buildtype:
- version += " (%s)" %(buildtype)
+ version[0] += " (%s)" %(buildtype)
painter.setFont(QFont("Proxima Nova Rg", 20 ))
painter.drawText(0, 0, 330 * self._scale, 230 * self._scale, Qt.AlignHCenter | Qt.AlignBottom, version[0])