Skip to content

Commit

Permalink
AutomatableModel: Don't force step size aligning in setValue
Browse files Browse the repository at this point in the history
  • Loading branch information
lukas-w committed Aug 26, 2016
1 parent cf824bd commit 02eee8e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/AutomatableModel.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ void AutomatableModel::setValue( const float value )
++m_setValueDepth;
const float old_val = m_value;

m_value = fittedValue( value, true );
m_value = fittedValue( value );
if( old_val != m_value )
{
// add changes to history so user can undo it
Expand Down

0 comments on commit 02eee8e

Please sign in to comment.