Skip to content

Commit

Permalink
Add gcode to add if start_gcode_manual
Browse files Browse the repository at this point in the history
  • Loading branch information
supermerill committed Jun 4, 2024
1 parent 4b3d137 commit 4b08ee2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/libslic3r/PrintConfig.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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));

Expand Down

0 comments on commit 4b08ee2

Please sign in to comment.