diff --git a/src/libslic3r/GCode/GCodeProcessor.cpp b/src/libslic3r/GCode/GCodeProcessor.cpp index c01ed7221..0a1ecf3e1 100644 --- a/src/libslic3r/GCode/GCodeProcessor.cpp +++ b/src/libslic3r/GCode/GCodeProcessor.cpp @@ -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])); } } diff --git a/src/libslic3r/PrintConfig.cpp b/src/libslic3r/PrintConfig.cpp index c10be7897..abae5dfc5 100644 --- a/src/libslic3r/PrintConfig.cpp +++ b/src/libslic3r/PrintConfig.cpp @@ -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 });