From 51ada1f78a63fd9bed4805501e351e731742f542 Mon Sep 17 00:00:00 2001 From: Reinhold Kainhofer Date: Wed, 12 Nov 2008 15:12:00 +0100 Subject: [PATCH] MusicXML: Fix FiguredBass (I forgot to assign the current clock tick) --- python/musicxml.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/python/musicxml.py b/python/musicxml.py index 53dd4283d5..295bdb326b 100644 --- a/python/musicxml.py +++ b/python/musicxml.py @@ -551,6 +551,8 @@ class Part (Music_xml_node): # and should not change the current measure position! if isinstance (n, FiguredBass): n._divisions = factor.denominator () + n._when = now + n._measure_position = measure_position continue if isinstance (n, Hash_text): -- 2.39.2