Changed the wizard to generate explicit extrusion widths

for the custom profile (not the zeros).
Changed the default values for filament_diameter and nozzle_diameter.
This commit is contained in:
bubnikv 2019-05-14 12:35:19 +02:00
parent 5f6c7853d4
commit 8a405d5a1c
2 changed files with 18 additions and 2 deletions
src/libslic3r

View file

@ -680,7 +680,7 @@ void PrintConfigDef::init_fff_params()
"and do multiple measurements along the filament, then compute the average.");
def->sidetext = L("mm");
def->min = 0;
def->set_default_value(new ConfigOptionFloats { 3. });
def->set_default_value(new ConfigOptionFloats { 1.75 });
def = this->add("filament_density", coFloats);
def->label = L("Density");
@ -1286,7 +1286,7 @@ void PrintConfigDef::init_fff_params()
def->label = L("Nozzle diameter");
def->tooltip = L("This is the diameter of your extruder nozzle (for example: 0.5, 0.35 etc.)");
def->sidetext = L("mm");
def->set_default_value(new ConfigOptionFloats { 0.5 });
def->set_default_value(new ConfigOptionFloats { 0.4 });
def = this->add("host_type", coEnum);
def->label = L("Host Type");