]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/note-head-line-engraver.cc
* scm/titling.scm (default-score-title): remove caps for piece.
[lilypond.git] / lily / note-head-line-engraver.cc
index 190c0bcc93d749487eeae0838cb2457405fa7ac6..b489af8b148fa9d18f15495646a96899b2451d1c 100644 (file)
@@ -87,12 +87,11 @@ Note_head_line_engraver::process_acknowledged_grobs ()
         Should probably store follow_ in line_, and suicide at some
         later point */
       if (follow_)
-       line_ = make_spanner ("VoiceFollower");
+       line_ = make_spanner ("VoiceFollower", head_->self_scm ());
          
       line_->set_bound (LEFT, last_head_);
       line_->set_bound (RIGHT, head_);
       
-      announce_grob (line_, head_->self_scm ());
 
       follow_ = false;
     }
@@ -101,11 +100,7 @@ Note_head_line_engraver::process_acknowledged_grobs ()
 void
 Note_head_line_engraver::stop_translation_timestep ()
 {
-  if (line_)
-    {
-      typeset_grob (line_);
-      line_ = 0;
-    }
+  line_ = 0;
   if (head_)
     last_head_ = head_;
   head_ = 0;