From a84598a8c9845ea1b4488ad6f56c92672a34c60c Mon Sep 17 00:00:00 2001 From: Ghostkeeper Date: Mon, 20 Jul 2020 13:24:18 +0200 Subject: [PATCH] Remove default value for g-code before pause It's best to just leave it as is. Not everyone appreciates bleeps. Contributes to issue CURA-7599. --- 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 39b4cfdac3..f28ed29c38 100644 --- a/plugins/PostProcessingPlugin/scripts/PauseAtHeight.py +++ b/plugins/PostProcessingPlugin/scripts/PauseAtHeight.py @@ -190,7 +190,7 @@ class PauseAtHeight(Script): "label": "G-code Before Pause", "description": "Any custom GCODE to run before the pause, for example, M300 S440 P200 to beep.", "type": "str", - "default_value": "M300 S440 P200; M300 S660 P250; M300 S880 P300;" + "default_value": "" }, "custom_gcode_after_pause": {