Add option to disable emitting M73 gcode (#2114) (#2940)

This commit is contained in:
Noisyfox 2023-12-03 09:36:27 +08:00 committed by GitHub
parent 0cee513416
commit a6c927d87f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
8 changed files with 37 additions and 6 deletions

View file

@ -3253,6 +3253,12 @@ def = this->add("filament_loading_speed", coFloats);
def->mode = comAdvanced;
def->set_default_value(new ConfigOptionBool(true));
def = this->add("disable_m73", coBool);
def->label = L("Disable set remaining print time");
def->tooltip = "Disable generating of the M73: Set remaining print time in the final gcode";
def->mode = comAdvanced;
def->set_default_value(new ConfigOptionBool(false));
def = this->add("seam_position", coEnum);
def->label = L("Seam position");
def->category = L("Quality");