]> git.donarmstrong.com Git - lilypond.git/commitdiff
Remove vertical extent from \hspace.
authorThomas Morgan <tlm@ziiuu.com>
Fri, 15 Jan 2010 21:54:14 +0000 (21:54 +0000)
committerNeil Puttock <n.puttock@gmail.com>
Fri, 15 Jan 2010 21:54:14 +0000 (21:54 +0000)
scm/define-markup-commands.scm

index 789ae29f7139803e35d7097c2e23c1b4881bf33c..4a579444649ed902efa8f3cbd9e4ce339a1b4ff6 100644 (file)
@@ -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)