Prevent LMMS VisualizationWidget from showing clipping color at exactly 0 db (#5162)
This commit is contained in:
@@ -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();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user