]> git.donarmstrong.com Git - lilypond.git/commitdiff
Only look at normal stems for beam collisions.
authorHan-Wen Nienhuys <hanwen@lilypond.org>
Thu, 24 Feb 2011 15:50:23 +0000 (12:50 -0300)
committerHan-Wen Nienhuys <hanwen@lilypond.org>
Thu, 24 Feb 2011 15:50:23 +0000 (12:50 -0300)
lily/beam-quanting.cc

index 05fa591d7d2ba51986cf1ed53de4e9d5c51bf680..f8a9434e7eab4f34d0d418ac75b245178346e4f7 100644 (file)
@@ -208,7 +208,7 @@ void Beam_scoring_problem::init_collisions (vector<Grob*> 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);
       }