Skip to content

Commit

Permalink
Update knob graphic no matter how small change is (LMMS#5850)
Browse files Browse the repository at this point in the history
  • Loading branch information
Spekular authored and IanCaio committed Mar 28, 2021
1 parent cc64505 commit 902c6b9
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 902c6b9

Please sign in to comment.