From: Reinhold Kainhofer Date: Fri, 30 Jan 2009 18:43:21 +0000 (+0100) Subject: MusicXML: Fix slurs in grace notes X-Git-Tag: release/2.12.3-1~156 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=0c0a3c35237a37a8c081efb1749e6f7313e6a0d2;p=lilypond.git MusicXML: Fix slurs in grace notes --- diff --git a/scripts/musicxml2ly.py b/scripts/musicxml2ly.py index ac5bd787a5..f6fcaa5cc1 100644 --- a/scripts/musicxml2ly.py +++ b/scripts/musicxml2ly.py @@ -2318,8 +2318,7 @@ def musicxml_voice_to_lily_voice (voice): if len (endslurs) > 1: endslurs[0].message (_ ('Cannot have two simultaneous (closing) slurs')) # record the slur status for the next note in the loop - if not grace: - inside_slur = False + inside_slur = False lily_ev = musicxml_spanner_to_lily_event (endslurs[0]) ev_chord.append (lily_ev) @@ -2331,8 +2330,7 @@ def musicxml_voice_to_lily_voice (voice): if len (startslurs) > 1: startslurs[0].message (_ ('Cannot have two simultaneous slurs')) # record the slur status for the next note in the loop - if not grace: - inside_slur = True + inside_slur = True lily_ev = musicxml_spanner_to_lily_event (startslurs[0]) ev_chord.append (lily_ev)