From: Reinhold Kainhofer Date: Sat, 12 Apr 2008 20:25:12 +0000 (+0200) Subject: MusicXML: Always add 5 to maj for chordnames, otherwise e.g. maj5.11 won't work X-Git-Tag: release/2.11.44-1~4^2 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=357b40db408f9809079d831ff05ebef956dd73d7;p=lilypond.git MusicXML: Always add 5 to maj for chordnames, otherwise e.g. maj5.11 won't work --- diff --git a/scripts/musicxml2ly.py b/scripts/musicxml2ly.py index 254bd377f2..6346b5e419 100644 --- a/scripts/musicxml2ly.py +++ b/scripts/musicxml2ly.py @@ -1319,12 +1319,12 @@ def musicxml_chordpitch_to_lily (mxl_cpitch): chordkind_dict = { 'major': '5', - 'minor': 'm', - 'augmented': 'aug', - 'diminished': 'dim', + 'minor': 'm5', + 'augmented': 'aug5', + 'diminished': 'dim5', # Sevenths: 'dominant': '7', - 'major-seventh': 'maj', + 'major-seventh': 'maj7', 'minor-seventh': 'm7', 'diminished-seventh': 'dim7', 'augmented-seventh': 'aug7',