Fix automation pattern regressions (#3977)

Change the default value of ignoreSurroundingPoints in AutomationPattern::putValue to true, which was false in #3352.
Fixes automation filpping bug and some potential issues.
This commit is contained in:
Hyunjin Song
2017-11-19 10:50:22 +09:00
committed by GitHub
parent 3de3ea6b16
commit 514ae34df3

View File

@@ -80,7 +80,7 @@ public:
MidiTime putValue( const MidiTime & time,
const float value,
const bool quantPos = true,
const bool ignoreSurroundingPoints = false );
const bool ignoreSurroundingPoints = true );
void removeValue( const MidiTime & time );