This commit is contained in:
sunsets
2023-08-04 10:01:19 +08:00
parent 33a54d7c36
commit a6bfd77a85
2 changed files with 3 additions and 3 deletions

View File

@@ -442,7 +442,7 @@ void PrintConfigDef::init_fff_params()
//B24 //B24
def = this->add("volume_temperature", coInts); def = this->add("volume_temperature", coInts);
def->label = L("Other layers"); 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."); "Set this to zero to disable bed temperature control commands in the output.");
def->sidetext = L("°C"); def->sidetext = L("°C");
def->full_label = L("Volume temperature"); def->full_label = L("Volume temperature");
@@ -1297,7 +1297,7 @@ void PrintConfigDef::init_fff_params()
def = this->add("first_layer_volume_temperature", coInts); def = this->add("first_layer_volume_temperature", coInts);
def->label = L("First layer"); def->label = L("First layer");
def->full_label = L("First layer volume temperature"); 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."); "bed temperature control commands in the output.");
def->sidetext = L("°C"); def->sidetext = L("°C");
def->min = 0; def->min = 0;

View File

@@ -2042,7 +2042,7 @@ void TabFilament::build()
line.append_option(optgroup->get_option("bed_temperature")); line.append_option(optgroup->get_option("bed_temperature"));
optgroup->append_line(line); optgroup->append_line(line);
//B24 //B24
line = { L("Volume"), "" }; line = { L("Chamber"), "" };
line.append_option(optgroup->get_option("first_layer_volume_temperature")); line.append_option(optgroup->get_option("first_layer_volume_temperature"));
line.append_option(optgroup->get_option("volume_temperature")); line.append_option(optgroup->get_option("volume_temperature"));
optgroup->append_line(line); optgroup->append_line(line);