SPE-2218 - libvgcode - Fixed detection of temperature range

This commit is contained in:
enricoturri1966 2024-04-05 09:54:35 +02:00 committed by Lukas Matena
parent 95b39425c2
commit f848f00ec2

View File

@ -1767,7 +1767,7 @@ void ViewerImpl::update_color_ranges()
m_actual_volumetric_rate_range.update(round_to_bin(v.actual_volumetric_rate()));
}
m_fan_speed_range.update(v.fan_speed);
m_temperature_range.update(v.temperature);
m_temperature_range.update(round_to_bin(v.temperature));
}
if ((v.is_travel() && m_settings.options_visibility.at(EOptionType::Travels)) ||
(v.is_wipe() && m_settings.options_visibility.at(EOptionType::Wipes)) ||