From 4fa94d4488fc02da0e6d9e513b1dafd023d78b0f Mon Sep 17 00:00:00 2001 From: Valentin Villenave Date: Wed, 23 Apr 2008 15:33:37 +0200 Subject: [PATCH] =?utf8?q?note-by-number=20fix=20from=20Risto=20V=C3=A4?= =?utf8?q?=C3=A4r=C3=A4niemi?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit 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 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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))) -- 2.39.5