From 4b08ee2cf2cb8a3714f87a406631facbfa145d49 Mon Sep 17 00:00:00 2001 From: supermerill Date: Mon, 3 Jun 2024 11:42:16 +0200 Subject: [PATCH] Add gcode to add if start_gcode_manual --- src/libslic3r/PrintConfig.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/libslic3r/PrintConfig.cpp b/src/libslic3r/PrintConfig.cpp index 05e59502b31..058bbb0a2fa 100644 --- a/src/libslic3r/PrintConfig.cpp +++ b/src/libslic3r/PrintConfig.cpp @@ -5131,7 +5131,8 @@ void PrintConfigDef::init_fff_params() def->label = L("Only custom Start G-code"); def->category = OptionCategory::customgcode; def->tooltip = L("Ensure that the slicer won't add heating, fan, extruder... commands before or just after your start-gcode." - "If set to true, you have to write a good and complete start_gcode, as no checks are made anymore."); + "\nIf set to true, you have to write a good and complete start_gcode, as no checks are made anymore." + "\nExemple:\nG21 ; set units to millimeters\nG90 ; use absolute coordinates\n{if use_relative_e_distances}M83{else}M82{endif}\nG92 E0 ; reset extrusion distance"); def->mode = comExpert | comPrusa; def->set_default_value(new ConfigOptionBool(false));