From: Erlend Aasland Date: Wed, 28 Nov 2007 14:54:32 +0000 (+0100) Subject: Use the same line thickness as circle markup for box markup. X-Git-Tag: release/2.11.36-1~62^2^2 X-Git-Url: https://git.donarmstrong.com/lilypond.git?a=commitdiff_plain;h=b6b0738a3323e7648f19ab2b0bcfc106fc5a87d5;p=lilypond.git Use the same line thickness as circle markup for box markup. Without this fix markup boxes will have extremely thin lines (when printed) compared to the rest of the score. --- diff --git a/scm/define-markup-commands.scm b/scm/define-markup-commands.scm index 95c9877370..210ada37cf 100644 --- a/scm/define-markup-commands.scm +++ b/scm/define-markup-commands.scm @@ -124,7 +124,7 @@ thickness and padding around the markup." (let* ((th (* (ly:output-def-lookup layout 'line-thickness) - (chain-assoc-get 'thickness props 0.1))) + (chain-assoc-get 'thickness props 1))) (size (chain-assoc-get 'font-size props 0)) (pad (* (magstep size) (chain-assoc-get 'box-padding props 0.2)))