Mirroring parameters prepared for UI.
Actual mirroring disabled, it will be refactored to maintain clarity of code.
This commit is contained in:
parent
b234a1b7a7
commit
baab5e49f1
5 changed files with 71 additions and 28 deletions
src/libslic3r
|
@ -2258,6 +2258,18 @@ void PrintConfigDef::init_sla_params()
|
|||
def->min = 100;
|
||||
def->set_default_value(new ConfigOptionInt(1440));
|
||||
|
||||
def = this->add("display_mirror_x", coBool);
|
||||
def->full_label = L("Display mirroring in X axis");
|
||||
def->label = L("Mirror X");
|
||||
def->tooltip = L("Enable mirroring of output images in the X axis");
|
||||
def->set_default_value(new ConfigOptionBool(false));
|
||||
|
||||
def = this->add("display_mirror_y", coBool);
|
||||
def->full_label = L("Display mirroring in Y axis");
|
||||
def->label = L("Mirror Y");
|
||||
def->tooltip = L("Enable mirroring of output images in the Y axis");
|
||||
def->set_default_value(new ConfigOptionBool(true));
|
||||
|
||||
def = this->add("display_orientation", coEnum);
|
||||
def->label = L("Display orientation");
|
||||
def->tooltip = L("Set the actual LCD display orientation inside the SLA printer."
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue