X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Fstem.cc;h=8c0e128487b4f48027bb7f23e8810b19aa229c56;hb=0af1ae450c223a60176987dfe0ce412912615e03;hp=fb830624ff23b360e1c06d5d85a7c0114033ed8e;hpb=08560a1b8076630c4fc6cb9b902614d8b74fd6fc;p=lilypond.git diff --git a/lily/stem.cc b/lily/stem.cc index fb830624ff..8c0e128487 100644 --- a/lily/stem.cc +++ b/lily/stem.cc @@ -277,7 +277,12 @@ Stem::is_invisible (Grob *me) bool Stem::is_normal_stem (Grob *me) { - return head_count (me) && scm_to_int (me->get_property ("duration-log")) >= 1; + if (!head_count (me)) + return false; + + extract_grob_set (me, "note-heads", heads); + SCM style = heads[0]->get_property ("style"); + return style != ly_symbol2scm ("kievan") && scm_to_int (me->get_property ("duration-log")) >= 1; } MAKE_SCHEME_CALLBACK (Stem, pure_height, 3) @@ -1128,6 +1133,7 @@ ADD_INTERFACE (Stem, "stemlet-length " "thickness " "tremolo-flag " + "tuplet-start " ); /****************************************************************/