mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-18 04:08:02 -06:00
New feature: show auto calibration marks on bed for X1/X1C printers
#88
This commit is contained in:
parent
c68fa18caf
commit
bf556a0272
10 changed files with 385 additions and 23 deletions
|
@ -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");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue