mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-07 06:57:36 -06:00
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:
parent
c9445dd707
commit
463716dd55
2 changed files with 3 additions and 3 deletions
|
@ -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]));
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue