From acb2a805865f635ad6374139cbe98ae3abcb66e7 Mon Sep 17 00:00:00 2001 From: Joe Neeman Date: Sat, 14 Jul 2007 10:35:13 +1000 Subject: [PATCH] ensure that ties don't avoid invisible accidentals --- lily/tie-formatting-problem.cc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lily/tie-formatting-problem.cc b/lily/tie-formatting-problem.cc index 935a1e018c..51bee1b6cf 100644 --- a/lily/tie-formatting-problem.cc +++ b/lily/tie-formatting-problem.cc @@ -194,6 +194,9 @@ Tie_formatting_problem::set_column_chord_outline (vector bounds, } Grob *acc = unsmob_grob (heads[i]->get_object ("accidental-grob")); + if (acc) + acc->get_property ("stencil"); /* trigger tie-related suicide */ + if (acc && acc->is_live () && dir == RIGHT) { boxes.push_back (Box (acc->extent (x_refpoint_, X_AXIS), -- 2.39.5