Skip to content

Commit

Permalink
Update knob graphic no matter how small change is (#5850)
Browse files Browse the repository at this point in the history
  • Loading branch information
Spekular authored Dec 16, 2020
1 parent 09ee5c7 commit 3eabaab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gui/widgets/Knob.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -340,7 +340,7 @@ bool Knob::updateAngle()
{
angle = angleFromValue( model()->inverseScaledValue( model()->value() ), model()->minValue(), model()->maxValue(), m_totalAngle );
}
if( qAbs( angle - m_angle ) > 3 )
if( qAbs( angle - m_angle ) > 0 )
{
m_angle = angle;
return true;
Expand Down

0 comments on commit 3eabaab

Please sign in to comment.