]> git.donarmstrong.com Git - lilypond.git/commitdiff
Merge branch 'master' of ssh://jomand@git.sv.gnu.org/srv/git/lilypond
authorJohn Mandereau <john.mandereau@gmail.com>
Thu, 4 Dec 2008 00:23:05 +0000 (01:23 +0100)
committerJohn Mandereau <john.mandereau@gmail.com>
Thu, 4 Dec 2008 00:23:05 +0000 (01:23 +0100)
python/musicexp.py

index d53815b03c11788feb67662fb4aba38e92704bfb..cab3c8d67f4303e70601e2ae920a020601ee0a19 100644 (file)
@@ -1485,8 +1485,12 @@ class TimeSignatureChange (Music):
         # signatures anyway despite the default 'C signature style!
         is_common_signature = self.fractions in ([2,2], [4,4], [4,2])
         if self.style:
-            if (self.style != "'()") or is_common_signature:
+            if self.style == "common":
+                st = "\\defaultTimeSignature"
+            elif (self.style != "'()"):
                 st = "\\once \\override Staff.TimeSignature #'style = #%s " % self.style
+            if (self.style != "'()") or is_common_signature:
+                st = "\\numericTimeSignature"
 
         # Easy case: self.fractions = [n,d] => normal \time n/d call:
         if len (self.fractions) == 2 and isinstance (self.fractions[0], int):