SPE-2218 - libvgcode - Fixed detection of fan speed range

This commit is contained in:
enricoturri1966 2024-04-10 12:11:35 +02:00 committed by Lukas Matena
parent f848f00ec2
commit 473f58c4e6

View File

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