From: Aleksandr Andreev Date: Tue, 25 Sep 2012 15:24:37 +0000 (-0500) Subject: Fix vertical position of Kievan dots X-Git-Tag: release/2.17.4-1~19 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=ef2f119f919cee8d111080a9a9825334b092e8be;p=lilypond.git Fix vertical position of Kievan dots Dots in Kievan notation should be placed at the same Y_AXIS position as the note, even if they occur on a line. Issue 2857. --- diff --git a/lily/dot-column.cc b/lily/dot-column.cc index 1aa0b728c0..6cba432639 100644 --- a/lily/dot-column.cc +++ b/lily/dot-column.cc @@ -187,7 +187,8 @@ Dot_column::calc_positioning_done (SCM smob) cfg.remove_collision (p); cfg[p] = dp; - if (Staff_symbol_referencer::on_line (dp.dot_, p)) + if (Staff_symbol_referencer::on_line (dp.dot_, p) && + dp.dot_->get_property ("style") != ly_symbol2scm ("kievan")) cfg.remove_collision (p); }