From ef2f119f919cee8d111080a9a9825334b092e8be Mon Sep 17 00:00:00 2001 From: Aleksandr Andreev Date: Tue, 25 Sep 2012 10:24:37 -0500 Subject: [PATCH] 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. --- lily/dot-column.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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); } -- 2.39.5