X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Fnew-accidental-engraver.cc;h=8fe112107ef58f31e9604d5c10d9e81594ef4bf4;hb=22d7891f2b9ddbe39118ff24f26b3a6eb302178e;hp=a8918d089fddfbe22a5a734801226204a9ff61e5;hpb=b1a2da9808d72008166aec4c7af9f923ca38064b;p=lilypond.git diff --git a/lily/new-accidental-engraver.cc b/lily/new-accidental-engraver.cc index a8918d089f..8fe112107e 100644 --- a/lily/new-accidental-engraver.cc +++ b/lily/new-accidental-engraver.cc @@ -292,18 +292,22 @@ New_accidental_engraver::create_grobs () } Accidental_placement::add_accidental (accidental_placement_, a); - - Side_position_interface::add_support (a, support_l); announce_grob (a, SCM_EOL); - // todo: add cautionary option + SCM accs = gh_cons (gh_int2scm (pitch->alteration_i_), SCM_EOL); if (num == 2 && extra_natural_b) accs = gh_cons (gh_int2scm (0), accs); + /* TODO: + + add cautionary option in accidental. + */ + if (tie_break_reminder) ; // TODO. - support_l->set_grob_property ("accidentals-grob", a->self_scm ()); + + support_l->set_grob_property ("accidental-grob", a->self_scm ()); a->set_grob_property ("accidentals", accs); accidental_arr_[i].accidental_ = a;