]> git.donarmstrong.com Git - lilypond.git/commitdiff
Add grace defaults for Fingering/StringNumber.
authorNeil Puttock <n.puttock@gmail.com>
Sun, 26 Apr 2009 20:47:11 +0000 (21:47 +0100)
committerNeil Puttock <n.puttock@gmail.com>
Sun, 26 Apr 2009 20:50:28 +0000 (21:50 +0100)
Thanks to Nick Payne for the suggestion.

THANKS
ly/engraver-init.ly
scm/music-functions.scm

diff --git a/THANKS b/THANKS
index 8291652b2ade04db2935bb472c887cfb37c2efae..565a49b2d3e83fd747032ffabc2e1ea5022fe88c 100644 (file)
--- a/THANKS
+++ b/THANKS
@@ -38,9 +38,13 @@ Kieren MacMillan
 
 BUG HUNTERS/SUGGESTIONS
 
+Chris Snyder
 David Kastrup
 Karim Haddad
+Mark Polesky
+Martin Tarenskeen
 Michael Käppler
+Nick Payne
 
 
 Release 2.12
index e32d94498e73cfb0f8487bf731173a3c1a5aec79..9aae417aa8bf04819ea86c02a72990bd4d3977ee 100644 (file)
@@ -595,6 +595,8 @@ automatically when an output definition (a @code{\score} or
     (Voice AccidentalCautionary font-size -4)
     (Voice Slur direction ,DOWN)
     (Voice Script font-size -3)
+    (Voice Fingering font-size -8)
+    (Voice StringNumber font-size -8)
   )
 
   keepAliveInterfaces = #'(
@@ -669,15 +671,13 @@ context."
   \override Beam #'length-fraction = #0.62
 
   %% No accidental in tablature !
-  \remove Accidental_engraver
+  \remove "Accidental_engraver"
 
   \override Glissando #'extra-dy = #0.75
   \override Glissando #'bound-details #'right = #`((attach-dir . ,LEFT)
                                                   (padding . 0.3))
   \override Glissando #'bound-details #'left = #`((attach-dir . ,RIGHT)
                                                   (padding . 0.3))
-  \override Glissando #'extra-dy = #0.75
-  \override Glissando #'gap = #0.2
 }
 
 \context {
index 28ef5bbe43abec41d824110f89c51e80b633b644..fd950bf28a08899c1c23ba50c588e25b3fbf98f9 100644 (file)
@@ -369,7 +369,11 @@ i.e.  this is not an override"
                          (Voice Stem no-stem-extend #t)
                          (Voice Beam thickness 0.384)
                          (Voice Beam length-fraction 0.8)
-                         (Voice Accidental font-size -4)))
+                         (Voice Accidental font-size -4)
+                         (Voice AccidentalCautionary font-size -4)
+                         (Voice Script font-size -3)
+                         (Voice Fingering font-size -8)
+                         (Voice StringNumber font-size -8)))
     
      (make-grob-property-set 'NoteColumn 'horizontal-shift (quotient n 2))
      (make-grob-property-set 'MultiMeasureRest 'staff-position (if (odd? n) -4 4))))))