Prevent LMMS VisualizationWidget from showing clipping color at exactly 0 db (#5162)

This commit is contained in:
Lost Robot
2019-08-30 16:36:04 -06:00
committed by GitHub
parent e803a31a90
commit c2eefe73d0

View File

@@ -210,7 +210,7 @@ QColor const & VisualizationWidget::determineLineColor(float level) const
{
return normalColor();
}
else if( level < 1.0f )
else if( level <= 1.0f )
{
return warningColor();
}