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:
xun.zhang 2023-09-04 17:22:22 +08:00 committed by Lane.Wei
parent 2509c9c90a
commit 8d8b690adf
2 changed files with 3 additions and 3 deletions

View File

@ -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);

View File

@ -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");