Added cancellation points. Added new flip xy option. Refactor and waring removal.

This commit is contained in:
tamasmeszaros 2018-12-12 11:36:02 +01:00
parent 98f9c4f56d
commit 68de2d9813
8 changed files with 119 additions and 84 deletions
src/libslic3r

View file

@ -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");