X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=input%2Fregression%2Fgeneric-output-property.ly;h=b5b3b260257081847d8c94e84eb402fc963c8c98;hb=2055f35c47a045a50a01ff4dba8524322cfc3b48;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..b5b3b26025 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.14.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 } +