Follow-up of bc81c22e (renamed the new CLI option --dont-ensure-on-bed to avoid double negatives)

This commit is contained in:
Lukas Matena 2021-08-04 15:43:22 +02:00
parent 7fd9a9cf6e
commit e76b54b770
2 changed files with 7 additions and 9 deletions

View file

@ -4154,9 +4154,10 @@ CLITransformConfigDef::CLITransformConfigDef()
def->label = L("Don't arrange");
def->tooltip = L("Do not rearrange the given models before merging and keep their original XY coordinates.");
def = this->add("dont_ensure_on_bed", coBool);
def->label = L("Don't ensure on bed");
def->tooltip = L("Do not lift the object above the bed when it is partially below.");
def = this->add("ensure_on_bed", coBool);
def->label = L("Ensure on bed");
def->tooltip = L("Lift the object above the bed when it is partially below. Enabled by default, use --no-ensure-on-bed to disable.");
def->set_default_value(new ConfigOptionBool(true));
def = this->add("duplicate", coInt);
def->label = L("Duplicate");