From 6940ceca44e99975c09fb6a680d00974dd693755 Mon Sep 17 00:00:00 2001 From: Tobias Doerffel Date: Sun, 13 Jan 2013 18:13:18 +0100 Subject: [PATCH] InstrumentFunctions: added natural minor scale A natural minor scale was missing which lead to some irritations about the harmonic and melodic minor scales. Had to add the new scale at the end of the chord table in order to not break existing projects and presets in which simple chord table indices are saved. Closes #3594824. --- src/core/InstrumentFunctions.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/core/InstrumentFunctions.cpp b/src/core/InstrumentFunctions.cpp index 05804d4c6..5868d19b4 100644 --- a/src/core/InstrumentFunctions.cpp +++ b/src/core/InstrumentFunctions.cpp @@ -130,6 +130,7 @@ ChordCreator::ChordTable::Init ChordCreator::ChordTable::s_initTable[] = { QT_TRANSLATE_NOOP( "ChordCreator", "Mixolydian" ), { 0, 2, 4, 5, 7, 9, 10, -1 } }, { QT_TRANSLATE_NOOP( "ChordCreator", "Aeolian" ), { 0, 2, 3, 5, 7, 8, 10, -1 } }, { QT_TRANSLATE_NOOP( "ChordCreator", "Locrian" ), { 0, 1, 3, 5, 6, 8, 10, -1 } }, + { QT_TRANSLATE_NOOP( "ChordCreator", "Minor" ), { 0, 2, 3, 5, 7, 8, 10, -1 } }, } ;