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 c9445dd707
commit 463716dd55
2 changed files with 3 additions and 3 deletions

View file

@ -4300,7 +4300,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]));
}
}