ENH: refine some tip with softening temperature

1. refine some tip
2. alert when bed temperture greq than softening temperature

jira: STUDIO-4532
Signed-off-by: xun.zhang <xun.zhang@bambulab.com>
Change-Id: Ib9623553a40825015744783f30c6e439827a49c6
This commit is contained in:
xun.zhang 2023-10-08 19:46:37 +08:00 committed by Lane.Wei
parent 31d88ab4e8
commit 5ff6496ec5
2 changed files with 3 additions and 3 deletions

View File

@ -4353,7 +4353,7 @@ void GCodeProcessor::update_slice_warnings()
if (m_highest_bed_temp != 0) {
for (size_t i = 0; i < used_extruders.size(); i++) {
int temperature = get_filament_vitrification_temperature(used_extruders[i]);
if (temperature != 0 && m_highest_bed_temp > temperature)
if (temperature != 0 && m_highest_bed_temp >= temperature)
warning.params.push_back(std::to_string(used_extruders[i]));
}
}

View File

@ -1414,8 +1414,8 @@ void PrintConfigDef::init_fff_params()
// BBS
def = this->add("temperature_vitrification", coInts);
def->label = L("Glass transition temperature");
def->tooltip = L("At this temperature,glass state transists to rubbery state. Thus the heatbed cannot be hotter than this temperature");
def->label = L("Softening temperature");
def->tooltip = L("The material softens at this temperature, so when the bed temperature is equal to or greater than it, it's highly recommended to open the front door and/or remove the upper glass to avoid cloggings.");
def->mode = comSimple;
def->set_default_value(new ConfigOptionInts{ 100 });