X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=input%2Fregression%2Fnon-empty-text.ly;h=c6e520bd555b2d95f8f7ea4c4f6674806c086d55;hb=d63542eb6004a896c23d912419a2468d662aba28;hp=03bdf52fe93966ca45e44eaed55cb1e072f6ff94;hpb=8b88bf025331c789167734067001a3d79501b433;p=lilypond.git diff --git a/input/regression/non-empty-text.ly b/input/regression/non-empty-text.ly index 03bdf52fe9..c6e520bd55 100644 --- a/input/regression/non-empty-text.ly +++ b/input/regression/non-empty-text.ly @@ -1,16 +1,22 @@ +\version "2.17.6" \header{ -texidoc=" -Text is set with empty horizontal dimensions. The boolean property -textNonEmpty is used to respect the horizontal size of text. -"; + texidoc = "By default, text is set with empty horizontal dimensions. +The property @code{extra-spacing-width} in @code{TextScript} is used +to control the horizontal size of text." } -\score { \notes { -\property Voice.TextScript \override #'no-spacing-rods = ##f -c4_"very wide and long text" c4 + +\layout { + line-width = 3.0\cm } -\paper { - linewidth = -1.0; - } +\relative c''{ + %% \textLengthOff + %% short for \override TextScript.extra-spacing-width = #'(+inf.0 . -inf.0) + %% \override TextScript.extra-spacing-height = #'(0 . 0) + c2_"very wide and long text" c | \break + %% short for \override TextScript.extra-spacing-width = #'(0 . 0) + %% \override TextScript.extra-spacing-height = #'(-inf.0 . +inf.0) + \textLengthOn + c2_"very wide and long text" c }