From 8335103e9c19b697f89d6bc5e33f3b27daf706e0 Mon Sep 17 00:00:00 2001 From: Han-Wen Nienhuys Date: Thu, 24 Feb 2011 12:50:23 -0300 Subject: [PATCH] Only look at normal stems for beam collisions. --- lily/beam-quanting.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lily/beam-quanting.cc b/lily/beam-quanting.cc index 05fa591d7d..f8a9434e7e 100644 --- a/lily/beam-quanting.cc +++ b/lily/beam-quanting.cc @@ -208,7 +208,7 @@ void Beam_scoring_problem::init_collisions (vector grobs) while (flip (&d) != LEFT); Grob* stem = unsmob_grob (grobs[i]->get_object ("stem")); - if (stem && Stem::has_interface (stem)) + if (stem && Stem::has_interface (stem) && Stem::is_normal_stem (stem)) { stems.insert (stem); } -- 2.39.5