]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/tie-engraver.cc
Fix #1581: Only NoteEvents can cause a tie. Ignore all other events that create note...
[lilypond.git] / lily / tie-engraver.cc
index d7fb39db74649414ea38c6e6fa0970e534a180df..edaba06c7c0720e1dcc35321acf9010cee298226 100644 (file)
@@ -270,6 +270,9 @@ Tie_engraver::stop_translation_timestep ()
          continue;
        }
 
+      // We only want real notes to cause ties, not e.g. pitched trills
+      if (!left_ev->in_event_class ("note-event"))
+          continue;
 
       SCM left_articulations = left_ev->get_property ("articulations");