New feature: show auto calibration marks on bed for X1/X1C printers

#88
This commit is contained in:
SoftFever 2023-04-02 11:09:05 +08:00
parent c68fa18caf
commit bf556a0272
10 changed files with 385 additions and 23 deletions

View file

@ -2224,7 +2224,7 @@ void PrintConfigDef::init_fff_params()
def->tooltip = L("Volume of nozzle between the cutter and the end of nozzle");
def->sidetext = L("mm³");
def->mode = comAdvanced;
def->readonly = true;
def->readonly = false;
def->set_default_value(new ConfigOptionFloat { 0.0 });
def = this->add("start_end_points", coPoints);
@ -2503,6 +2503,12 @@ void PrintConfigDef::init_fff_params()
def->mode = comAdvanced;
def->set_default_value(new ConfigOptionBool(false));
def = this->add("bbl_calib_mark_logo", coBool);
def->label = L("Show auto-calibration marks");
def->tooltip = "";
def->mode = comAdvanced;
def->set_default_value(new ConfigOptionBool(true));
def = this->add("seam_position", coEnum);
def->label = L("Seam position");
def->category = L("Quality");