X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=input%2Fregression%2Fgeneric-output-property.ly;h=0b3fca4b20e734bdcd216dbb4b41895626fc715f;hb=refs%2Fheads%2Fupstream-mut;hp=87a03e5c622303826e13a24dd76ef4872ea1197f;hpb=aa76d0de152265e9913d7dc67c4fd8d923aec04b;p=lilypond.git diff --git a/input/regression/generic-output-property.ly b/input/regression/generic-output-property.ly index 87a03e5c62..0b3fca4b20 100644 --- a/input/regression/generic-output-property.ly +++ b/input/regression/generic-output-property.ly @@ -1,30 +1,27 @@ -#(ly:set-option 'old-relative) -\version "1.9.1" + +\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 } +