]> git.donarmstrong.com Git - lilypond.git/commitdiff
note-by-number fix from Risto Vääräniemi
authorValentin Villenave <valentin@villenave.net>
Wed, 23 Apr 2008 13:33:37 +0000 (15:33 +0200)
committerValentin Villenave <valentin@villenave.net>
Wed, 23 Apr 2008 13:33:37 +0000 (15:33 +0200)
I don't know why the stem-thickness was divided by 2.
It certainly has been sensible at some point, is
it obviously isn't anymore.

scm/define-markup-commands.scm

index 3ec32d7335bba9e7c0bce9dfdef6ec89371cae3b..57a66c7c5d30408ca740e6dcc52ed349a854b0bc 100644 (file)
@@ -1414,7 +1414,7 @@ Construct a note symbol, with stem.  By using fractional values for
                                          (string-append "flags."
                                                         (if (> dir 0) "u" "d")
                                                         (number->string log)))
-                       (cons (+ (car attach-off) (/ stem-thickness 2)) stemy)))))
+                       (cons (car attach-off) stemy)))))
 
     (if (and dots flaggl (> dir 0))
        (set! dots (ly:stencil-translate-axis dots 0.35 X)))