Fixed a issue that support_bottom_z_distance was not working as expected.

Fixed #2667
This commit is contained in:
SoftFever 2023-11-10 19:46:01 +08:00
parent edb5676dd1
commit c860680b21
3 changed files with 3 additions and 5 deletions

View file

@ -3501,6 +3501,7 @@ def = this->add("filament_loading_speed", coFloats);
def = this->add("support_top_z_distance", coFloat);
//def->gui_type = ConfigOptionDef::GUIType::f_enum_open;
def->label = L("Top Z distance");
def->min = 0;
def->category = L("Support");
def->tooltip = L("The z gap between the top support interface and object");
def->sidetext = L("mm");
@ -3516,12 +3517,12 @@ def = this->add("filament_loading_speed", coFloats);
def->mode = comAdvanced;
def->set_default_value(new ConfigOptionFloat(0.2));
// BBS:MusangKing
def = this->add("support_bottom_z_distance", coFloat);
def->label = L("Bottom Z distance");
def->category = L("Support");
def->tooltip = L("The z gap between the bottom support interface and object");
def->sidetext = L("mm");
def->min = 0;
def->mode = comAdvanced;
def->set_default_value(new ConfigOptionFloat(0.2));