mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-12-01 06:41:06 -07:00
Splashscreen: Another (and last) correction
Now all the needed changes should be done.
This commit is contained in:
parent
d6acb78bd4
commit
e03c3b95c5
1 changed files with 1 additions and 1 deletions
|
|
@ -23,7 +23,7 @@ class CuraSplashScreen(QSplashScreen):
|
||||||
version = Application.getInstance().getVersion().split("-")
|
version = Application.getInstance().getVersion().split("-")
|
||||||
buildtype = Application.getInstance().getBuildType()
|
buildtype = Application.getInstance().getBuildType()
|
||||||
if buildtype:
|
if buildtype:
|
||||||
version += " (%s)" %(buildtype)
|
version[0] += " (%s)" %(buildtype)
|
||||||
|
|
||||||
painter.setFont(QFont("Proxima Nova Rg", 20 ))
|
painter.setFont(QFont("Proxima Nova Rg", 20 ))
|
||||||
painter.drawText(0, 0, 330 * self._scale, 230 * self._scale, Qt.AlignHCenter | Qt.AlignBottom, version[0])
|
painter.drawText(0, 0, 330 * self._scale, 230 * self._scale, Qt.AlignHCenter | Qt.AlignBottom, version[0])
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue