Make the .gcode and .sl1 thumbnails configurable through printer profile.

This commit is contained in:
bubnikv 2019-11-15 17:33:31 +01:00
parent bc53c44bf4
commit b2a6a07d72
5 changed files with 17 additions and 7 deletions
src/libslic3r

View file

@ -62,6 +62,11 @@ void PrintConfigDef::init_common_params()
def->mode = comAdvanced;
def->set_default_value(new ConfigOptionString(""));
def = this->add("thumbnails", coPoints);
def->label = L("Picture sizes to be stored into a .gcode and .sl1 files");
def->mode = comExpert;
def->set_default_value(new ConfigOptionPoints());
def = this->add("layer_height", coFloat);
def->label = L("Layer height");
def->category = L("Layers and Perimeters");