diff --git a/src/libslic3r/PrintConfig.cpp b/src/libslic3r/PrintConfig.cpp index 8a1a96a..69134ae 100644 --- a/src/libslic3r/PrintConfig.cpp +++ b/src/libslic3r/PrintConfig.cpp @@ -442,7 +442,7 @@ void PrintConfigDef::init_fff_params() //B24 def = this->add("volume_temperature", coInts); def->label = L("Other layers"); - def->tooltip = L("Volume temperature for layers after the first one. " + def->tooltip = L("Chamber temperature for layers after the first one. " "Set this to zero to disable bed temperature control commands in the output."); def->sidetext = L("°C"); def->full_label = L("Volume temperature"); @@ -1297,7 +1297,7 @@ void PrintConfigDef::init_fff_params() def = this->add("first_layer_volume_temperature", coInts); def->label = L("First layer"); def->full_label = L("First layer volume temperature"); - def->tooltip = L("Volume temperature for the first layer. Set this to zero to disable " + def->tooltip = L("Chamber temperature for the first layer. Set this to zero to disable " "bed temperature control commands in the output."); def->sidetext = L("°C"); def->min = 0; diff --git a/src/slic3r/GUI/Tab.cpp b/src/slic3r/GUI/Tab.cpp index 869cf3c..6d6ab3f 100644 --- a/src/slic3r/GUI/Tab.cpp +++ b/src/slic3r/GUI/Tab.cpp @@ -2042,7 +2042,7 @@ void TabFilament::build() line.append_option(optgroup->get_option("bed_temperature")); optgroup->append_line(line); //B24 - line = { L("Volume"), "" }; + line = { L("Chamber"), "" }; line.append_option(optgroup->get_option("first_layer_volume_temperature")); line.append_option(optgroup->get_option("volume_temperature")); optgroup->append_line(line);