X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=input%2Fregression%2Fnon-empty-text.ly;h=6e19ca830731d15e87872ba86ed628e18b11b619;hb=68cf70682a542701a918f8bfff50f2b8b85f84e2;hp=df9f39a37d5b71f8a089d8fdf8059e421f26a04e;hpb=955f829883aa125b2b633b1e71f6256da5b773fa;p=lilypond.git diff --git a/input/regression/non-empty-text.ly b/input/regression/non-empty-text.ly index df9f39a37d..6e19ca8307 100644 --- a/input/regression/non-empty-text.ly +++ b/input/regression/non-empty-text.ly @@ -1,24 +1,22 @@ -#(ly:set-option 'old-relative) -\version "1.9.0" +\version "2.12.0" \header{ - texidoc=" -Text is set with empty horizontal dimensions. The boolean property -TextScript.no-spacing-rods is used to control 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\relative c''{ - %% \emptyText - %% short for \property Voice.TextScript \set #'no-spacing-rods = ##t - c2_"very wide and long text" c | \break - %% short for \property Voice.TextScript \set #'no-spacing-rods = ##f - \fatText - c_"very wide and long text" c - } - \paper { - linewidth = 3.0\cm - } +\layout { + line-width = 3.0\cm } +\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 +}