dont disappear when click on splashscreen

CURA-4343
This commit is contained in:
Mark 2017-09-21 16:08:46 +02:00
parent 879b3df816
commit d2de039371

View file

@ -41,6 +41,10 @@ class CuraSplashScreen(QSplashScreen):
self._loading_image_rotation_angle -= 10
self.repaint()
# Override the mousePressEvent so the splashscreen doesn't disappear when clicked
def mousePressEvent(self, mouse_event):
pass
def drawContents(self, painter):
if self._to_stop:
return