From: Valentin Villenave Date: Wed, 23 Apr 2008 13:33:37 +0000 (+0200) Subject: note-by-number fix from Risto Vääräniemi X-Git-Tag: release/2.11.45-1~14^2 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=4fa94d4488fc02da0e6d9e513b1dafd023d78b0f;p=lilypond.git note-by-number fix from Risto Vääräniemi 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. --- diff --git a/scm/define-markup-commands.scm b/scm/define-markup-commands.scm index 3ec32d7335..57a66c7c5d 100644 --- a/scm/define-markup-commands.scm +++ b/scm/define-markup-commands.scm @@ -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)))