From: Reinhold Kainhofer Date: Fri, 3 Apr 2009 15:58:04 +0000 (+0200) Subject: MusicXML: Allow dominant-seventh chord, even though MusicXML doesn't specify it X-Git-Tag: release/2.12.3-1~138 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=c714a279b64295120cbe1127557df6a8fedd5f0d;p=lilypond.git MusicXML: Allow dominant-seventh chord, even though MusicXML doesn't specify it (cherry picked from commit 6739bb60eee5b748396ee1f0a78053a0b23ea5d8) --- diff --git a/scripts/musicxml2ly.py b/scripts/musicxml2ly.py index f6fcaa5cc1..19899b185c 100644 --- a/scripts/musicxml2ly.py +++ b/scripts/musicxml2ly.py @@ -1662,6 +1662,7 @@ chordkind_dict = { 'diminished': 'dim5', # Sevenths: 'dominant': '7', + 'dominant-seventh': '7', 'major-seventh': 'maj7', 'minor-seventh': 'm7', 'diminished-seventh': 'dim7',