From 84bb820e336bd293e7552b381df2bb9ea94391be Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Wed, 15 Mar 2023 10:42:07 +0100 Subject: [PATCH] Update copy in pause at height to reflect that the first layer is 0 CURA-10391 --- plugins/PostProcessingPlugin/scripts/PauseAtHeight.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/PostProcessingPlugin/scripts/PauseAtHeight.py b/plugins/PostProcessingPlugin/scripts/PauseAtHeight.py index 7f8d1d118a..54f555b4ae 100644 --- a/plugins/PostProcessingPlugin/scripts/PauseAtHeight.py +++ b/plugins/PostProcessingPlugin/scripts/PauseAtHeight.py @@ -46,7 +46,7 @@ class PauseAtHeight(Script): "pause_layer": { "label": "Pause Layer", - "description": "Enter the Number of the LAST layer you want to finish prior to the pause (from the Cura preview).", + "description": "Enter the Number of the LAST layer you want to finish prior to the pause. Note that 0 is the first layer printed.", "type": "int", "value": "math.floor((pause_height - 0.27) / 0.1) + 1", "minimum_value": "0",