mirror of
https://git.mirrors.martin98.com/https://github.com/slic3r/Slic3r.git
synced 2025-08-02 18:10:36 +08:00
Bugfix: gap_fill_speed didn't actually support autospeed. #3696
This commit is contained in:
parent
788cbebcfc
commit
a06b11db8e
@ -578,7 +578,7 @@ PrintConfigDef::PrintConfigDef()
|
||||
def->default_value = opt;
|
||||
}
|
||||
|
||||
def = this->add("gap_fill_speed", coFloat);
|
||||
def = this->add("gap_fill_speed", coFloatOrPercent);
|
||||
def->label = "↳ gaps";
|
||||
def->full_label = "Gap fill speed";
|
||||
def->gui_type = "f_enum_open";
|
||||
@ -590,7 +590,7 @@ PrintConfigDef::PrintConfigDef()
|
||||
def->min = 0;
|
||||
def->enum_values.push_back("0");
|
||||
def->enum_labels.push_back("auto");
|
||||
def->default_value = new ConfigOptionFloat(20);
|
||||
def->default_value = new ConfigOptionFloatOrPercent(20);
|
||||
|
||||
def = this->add("gcode_arcs", coBool);
|
||||
def->label = "Use native G-code arcs";
|
||||
|
@ -219,7 +219,7 @@ class PrintRegionConfig : public virtual StaticPrintConfig
|
||||
ConfigOptionPercent fill_density;
|
||||
ConfigOptionBool fill_gaps;
|
||||
ConfigOptionEnum<InfillPattern> fill_pattern;
|
||||
ConfigOptionFloat gap_fill_speed;
|
||||
ConfigOptionFloatOrPercent gap_fill_speed;
|
||||
ConfigOptionInt infill_extruder;
|
||||
ConfigOptionFloatOrPercent infill_extrusion_width;
|
||||
ConfigOptionInt infill_every_layers;
|
||||
|
Loading…
x
Reference in New Issue
Block a user