From 6b2d6fe8d62f55ddfc9a4d5dec75ca6df3572a78 Mon Sep 17 00:00:00 2001 From: Hannu Haahti Date: Fri, 17 Jan 2014 15:07:31 +0200 Subject: [PATCH] changed default detuning type to linear -- probably best for that purpose --- src/core/note.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/core/note.cpp b/src/core/note.cpp index 2088e1188..7307fd461 100644 --- a/src/core/note.cpp +++ b/src/core/note.cpp @@ -272,6 +272,8 @@ void note::createDetuning() m_detuning = new DetuningHelper; (void) m_detuning->automationPattern(); m_detuning->setRange( -MaxDetuning, MaxDetuning, 0.1f ); + m_detuning->automationPattern()->setProgressionType( + AutomationPattern::LinearProgression ); }