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:
authorLipu Fei <lipu.fei815@gmail.com>2017-09-14 12:44:09 +0300
committerLipu Fei <lipu.fei815@gmail.com>2017-09-14 12:44:09 +0300
commit9683dcae729de449f5cde838d14dce53bbb1ec2d (patch)
tree544440d30450b89a10cccb98185124fdf25fc2f7 /cura/CuraSplashScreen.py
parent7144720d788b4d22608bac7920ad885d9b95abf6 (diff)
Remose useless code
CURA-4215
Diffstat (limited to 'cura/CuraSplashScreen.py')
-rw-r--r--cura/CuraSplashScreen.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/cura/CuraSplashScreen.py b/cura/CuraSplashScreen.py
index 7e25855655..f6c004dc7a 100644
--- a/cura/CuraSplashScreen.py
+++ b/cura/CuraSplashScreen.py
@@ -68,7 +68,6 @@ class CuraSplashScreen(QSplashScreen):
pen.setWidth(6 * self._scale)
pen.setColor(QColor(255, 255, 255, 255))
painter.setPen(pen)
- #painter.drawArc(100, 350, 32 * self._scale, 32 * self._scale, self._loading_image_rotation_angle * 16, 300 * 16)
painter.drawArc(60, 350, 32 * self._scale, 32 * self._scale, self._loading_image_rotation_angle * 16, 300 * 16)
# draw message text
@@ -76,7 +75,6 @@ class CuraSplashScreen(QSplashScreen):
font = QFont() # Using system-default font here
font.setPointSize(16)
painter.setFont(font)
- #painter.drawText(150, 328, 316, 64,
painter.drawText(100, 328, 260, 64,
Qt.AlignLeft | Qt.AlignVCenter | Qt.TextWordWrap,
self._current_message)