From 0c0a3c35237a37a8c081efb1749e6f7313e6a0d2 Mon Sep 17 00:00:00 2001 From: Reinhold Kainhofer Date: Fri, 30 Jan 2009 19:43:21 +0100 Subject: [PATCH] MusicXML: Fix slurs in grace notes --- scripts/musicxml2ly.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) 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) -- 2.39.2