From e453b38d02e0a82e4d9f1b0c6681fbb99df8a2b4 Mon Sep 17 00:00:00 2001 From: Hannu Haahti Date: Thu, 23 Jan 2014 19:21:10 +0200 Subject: [PATCH] increase detuning interval to 0.5 semitones --- src/core/note.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/note.cpp b/src/core/note.cpp index 4739562b1..2d77f0237 100644 --- a/src/core/note.cpp +++ b/src/core/note.cpp @@ -268,7 +268,7 @@ void note::createDetuning() { m_detuning = new DetuningHelper; (void) m_detuning->automationPattern(); - m_detuning->setRange( -MaxDetuning, MaxDetuning, 0.1f ); + m_detuning->setRange( -MaxDetuning, MaxDetuning, 0.5f ); m_detuning->automationPattern()->setProgressionType( AutomationPattern::LinearProgression ); } }