Added cancellation points. Added new flip xy option. Refactor and waring removal.
This commit is contained in:
parent
98f9c4f56d
commit
68de2d9813
8 changed files with 119 additions and 84 deletions
src/libslic3r
|
@ -2388,6 +2388,13 @@ void PrintConfigDef::init_sla_params()
|
|||
def->min = 100;
|
||||
def->default_value = new ConfigOptionInt(1440);
|
||||
|
||||
def = this->add("display_flip_xy", coBool);
|
||||
def->label = ("Flip X and Y axis");
|
||||
def->tooltip = L("Flip X and Y axis in the output raster");
|
||||
def->cli = "display-flip-xy=i";
|
||||
def->min = 0;
|
||||
def->default_value = new ConfigOptionBool(true);
|
||||
|
||||
def = this->add("printer_correction", coFloats);
|
||||
def->full_label = L("Printer scaling correction");
|
||||
def->tooltip = L("Printer scaling correction");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue