]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/tie-engraver.cc
Fix trivial bug introduced in commit fb88079204f0fd758f271f88bd7b2f3d8102b6fc
[lilypond.git] / lily / tie-engraver.cc
index b97a5ad9c2bbd71782b25f95952a902a376aef81..cf525dc7b967c57d50c562b94b19c87c677e4c4b 100644 (file)
@@ -179,14 +179,9 @@ Tie_engraver::stop_translation_timestep ()
       if (!wait)
        heads_to_tie_.clear ();
 
-      Grob *sep = unsmob_grob (get_property ("breakableSeparationItem"));
       for (vsize i = 0; i < ties_.size (); i++)
-       {
-         if (sep)
-           ties_[i]->set_object  ("separation-item", sep->self_scm ());
-         
          typeset_tie (ties_[i]);
-       }
+
       ties_.clear ();
       tie_column_ = 0;
     }
@@ -252,7 +247,7 @@ Tie_engraver::stop_translation_timestep ()
   if (!wait && new_heads_to_tie.size ())
     heads_to_tie_.clear ();
 
-  // hmmm, how to do with copy() ?
+  // hmmm, how to do with copy () ?
   for (vsize i = 0; i < new_heads_to_tie.size (); i++)
     heads_to_tie_.push_back (new_heads_to_tie[i]);