From 740705b836c49d61fe8dc8759192f66746a1c46b Mon Sep 17 00:00:00 2001 From: Thomas Morgan Date: Fri, 15 Jan 2010 21:54:14 +0000 Subject: [PATCH] Remove vertical extent from \hspace. --- scm/define-markup-commands.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scm/define-markup-commands.scm b/scm/define-markup-commands.scm index 789ae29f71..4a57944464 100644 --- a/scm/define-markup-commands.scm +++ b/scm/define-markup-commands.scm @@ -492,8 +492,8 @@ Create an invisible object taking up horizontal space @var{amount}. } @end lilypond" (if (> amount 0) - (ly:make-stencil "" (cons 0 amount) '(-1 . 1)) - (ly:make-stencil "" (cons amount amount) '(-1 . 1)))) + (ly:make-stencil "" (cons 0 amount) '(0 . 0)) + (ly:make-stencil "" (cons amount amount) '(0 . 0)))) ;; todo: fix negative space (define-markup-command (vspace layout props amount) -- 2.39.5