From 75e3ff642e7a0ffb0c6b30dadc12c561d5736e9a Mon Sep 17 00:00:00 2001 From: nickthetait Date: Mon, 6 Jul 2015 14:26:54 -0600 Subject: [PATCH] Improve clarity of one-at-a-time mode. Part of #128 --- Cura/util/objectScene.py | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/Cura/util/objectScene.py b/Cura/util/objectScene.py index d29ded10..da590a30 100644 --- a/Cura/util/objectScene.py +++ b/Cura/util/objectScene.py @@ -178,13 +178,9 @@ class Scene(object): self._oneAtATime = False if self._lastResultOneAtATime: if self._sceneView: - self._sceneView.notification.message("Info: Print one at a time mode disabled. Object too tall.") + self._sceneView.notification.message("Object must be shorter than {}mm for this printer/toolhead. Reduce object size or swap to \"All at once\" mode. ".format(self._gantryHeight)) break - if self._lastOneAtATime and self._oneAtATime and not self._lastResultOneAtATime: - if self._sceneView: - self._sceneView.notification.message("Info: Print one at a time mode re-enabled.") - self._lastResultOneAtATime = self._oneAtATime self._lastOneAtATime = printOneAtATime -- 2.30.2