From: Reinhold Kainhofer Date: Wed, 12 Nov 2008 14:12:00 +0000 (+0100) Subject: MusicXML: Fix FiguredBass (I forgot to assign the current clock tick) X-Git-Tag: release/2.11.64-1~40 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;ds=sidebyside;h=51ada1f78a63fd9bed4805501e351e731742f542;p=lilypond.git MusicXML: Fix FiguredBass (I forgot to assign the current clock tick) --- 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):