X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=input%2Fregression%2Fgeneric-output-property.ly;h=0b3fca4b20e734bdcd216dbb4b41895626fc715f;hb=88d306d9c5666b5ade4a136df29cca19c5ff5ed7;hp=aa13d88027e79ee694b20816a2a2f09e030eac0f;hpb=11613b92019bb42418863f43de92287a64878f14;p=lilypond.git diff --git a/input/regression/generic-output-property.ly b/input/regression/generic-output-property.ly index aa13d88027..0b3fca4b20 100644 --- a/input/regression/generic-output-property.ly +++ b/input/regression/generic-output-property.ly @@ -1,30 +1,27 @@ -\version "1.9.2" +\version "2.16.0" \header{ -texidoc=" + texidoc=" As a last resort, the placement of grobs can be adjusted manually, by setting the @code{extra-offset} of a grob. " } -\score{ - \notes\relative c''{ - \outputproperty #(make-type-checker 'note-head-interface) - #'extra-offset = #'(2 . 3) - c2 - c - \context Score { - \outputproperty #(make-type-checker 'mark-interface) - #'extra-offset = #'(-1 . 4) - } - \mark A - d1 - \mark \default - e -} -\paper{ - raggedright = ##t -} +\layout{ ragged-right = ##t } + + +\relative c''{ + \applyOutput #'Bottom #(outputproperty-compatibility + (make-type-checker 'note-head-interface) + 'extra-offset '(2 . 3)) + c2 + c + \applyOutput #'Score #(outputproperty-compatibility (make-type-checker 'mark-interface) 'extra-offset '(-1 . 4)) + \mark A + d1 + \mark \default + e } +