X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Fspan-arpeggio-engraver.cc;h=a5a8ad51b3687ae070111d8772f42d101e12e67b;hb=8e1bf39ba8b390db542d203b6c301e09f834637d;hp=cbf77b26739cf7bebf4ebd4b5f8207c9468e5928;hpb=2c22efe5a46a37065b10c3f51c5d7db00d07d318;p=lilypond.git diff --git a/lily/span-arpeggio-engraver.cc b/lily/span-arpeggio-engraver.cc index cbf77b2673..a5a8ad51b3 100644 --- a/lily/span-arpeggio-engraver.cc +++ b/lily/span-arpeggio-engraver.cc @@ -42,9 +42,7 @@ void Span_arpeggio_engraver::acknowledge_arpeggio (Grob_info info) { if (info.origin_contexts (this).size ()) // huh? what's this test for? - { - arpeggios_.push (info.grob ()); - } + arpeggios_.push (info.grob ()); } void @@ -59,9 +57,7 @@ Span_arpeggio_engraver::process_acknowledged () */ if (!span_arpeggio_ && arpeggios_.size () > 1 && to_boolean (get_property ("connectArpeggios"))) - { - span_arpeggio_ = make_item ("Arpeggio", SCM_EOL); - } + span_arpeggio_ = make_item ("Arpeggio", SCM_EOL); } void @@ -89,7 +85,7 @@ Span_arpeggio_engraver::stop_translation_timestep () we can't kill the children, since we don't want to the previous note to bump into the span arpeggio; so we make it transparent. */ - arpeggios_[j]->set_property ("print-function", SCM_EOL); + arpeggios_[j]->set_property ("transparent", SCM_BOOL_T); } span_arpeggio_ = 0;