diff --git a/src/libslic3r/PrintConfig.cpp b/src/libslic3r/PrintConfig.cpp index 9903b6bf49..0147be2be5 100644 --- a/src/libslic3r/PrintConfig.cpp +++ b/src/libslic3r/PrintConfig.cpp @@ -964,7 +964,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}); @@ -3181,7 +3181,7 @@ void PrintConfigDef::init_fff_params() def->sidetext = L("°C"); def->full_label = L("Chamber temperature during print.0 means do not open compensation.Don't open it for low-temperature filaments like PLA, PETG, TPU"); def->min = 0; - def->max = 70; + def->max = 60; def->set_default_value(new ConfigOptionInts{0}); def = this->add("nozzle_temperature", coInts); diff --git a/src/slic3r/GUI/Tab.cpp b/src/slic3r/GUI/Tab.cpp index ecf3dc8cb4..13537da8bb 100644 --- a/src/slic3r/GUI/Tab.cpp +++ b/src/slic3r/GUI/Tab.cpp @@ -2748,7 +2748,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");