From d40a20771b8d81fce241611f9bfc4fbfe3ea5c4b Mon Sep 17 00:00:00 2001 From: MariMakes <40423138+MariMakes@users.noreply.github.com> Date: Mon, 22 May 2023 10:51:08 +0200 Subject: [PATCH] CURA-10615_Fix M600_Retract_Enter --- plugins/PostProcessingPlugin/scripts/FilamentChange.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/PostProcessingPlugin/scripts/FilamentChange.py b/plugins/PostProcessingPlugin/scripts/FilamentChange.py index ef85d5ae36..0253ae8adc 100644 --- a/plugins/PostProcessingPlugin/scripts/FilamentChange.py +++ b/plugins/PostProcessingPlugin/scripts/FilamentChange.py @@ -198,8 +198,8 @@ class FilamentChange(Script): if enable_before_macro: color_change = color_change + before_macro + "\n" - - color_change = color_change + "M600\n" + + color_change = color_change + "M600" # Left out the /n, some printers are not retracting correctly with the new line - CURA-10615 if not firmware_config: if initial_retract is not None and initial_retract > 0.: