ENH: optimize exhaust fan param display
1.Optimize exhaust fan param display 2.Set max chamber temp to 60 jira:STUDIO-3518 Signed-off-by: xun.zhang <xun.zhang@bambulab.com> Change-Id: I0663803381f38f717554da4aefc61e02a8c1f37e
This commit is contained in:
parent
2509c9c90a
commit
8d8b690adf
|
@ -973,7 +973,7 @@ void PrintConfigDef::init_fff_params()
|
|||
|
||||
def = this->add("activate_air_filtration",coBools);
|
||||
def->label = L("Activate air filtration");
|
||||
def->tooltip = L("Acivate for better air filtration");
|
||||
def->tooltip = L("Activate for better air filtration");
|
||||
def->mode = comSimple;
|
||||
def->set_default_value(new ConfigOptionBools{false});
|
||||
|
||||
|
@ -3231,7 +3231,7 @@ void PrintConfigDef::init_fff_params()
|
|||
def->sidetext = L("°C");
|
||||
def->full_label = L("Chamber temperature");
|
||||
def->min = 0;
|
||||
def->max = 70;
|
||||
def->max = 60;
|
||||
def->set_default_value(new ConfigOptionInts{0});
|
||||
|
||||
def = this->add("nozzle_temperature", coInts);
|
||||
|
|
|
@ -2751,7 +2751,7 @@ void TabFilament::build()
|
|||
optgroup = page->new_optgroup(L("Auxiliary part cooling fan"), L"param_cooling_fan");
|
||||
optgroup->append_single_option_line("additional_cooling_fan_speed");
|
||||
|
||||
optgroup = page->new_optgroup(L("Exhaust fan"));
|
||||
optgroup = page->new_optgroup(L("Exhaust fan"),L"param_cooling_fan");
|
||||
|
||||
optgroup->append_single_option_line("activate_air_filtration");
|
||||
|
||||
|
|
Loading…
Reference in New Issue