]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/instrument-name-engraver.cc
*** empty log message ***
[lilypond.git] / lily / instrument-name-engraver.cc
index 892bde9b9f89fc000eb03c640ba0eed595f6cead..c99b6f5c775ae93f9807f7b159e3d77dcb1e6d43 100644 (file)
@@ -52,7 +52,6 @@ Instrument_name_engraver::stop_translation_timestep ()
     {
       text_->set_property ("side-support-elements",
                                get_property ("instrumentSupport"));
-      typeset_grob (text_);
       text_ = 0;
     }
 }
@@ -75,11 +74,11 @@ Instrument_name_engraver::create_text ()
     return ;
 
   
-  text_ = make_item ("InstrumentName");
+  text_ = make_item ("InstrumentName", SCM_EOL);
       
   if (text_->get_property ("text") != txt)
     text_->set_property ("text", txt);
-  announce_grob (text_, SCM_EOL);
+  
   }
 
 void
@@ -169,11 +168,11 @@ Vocal_name_engraver::create_text ()
   if (txt == SCM_EOL)
     return ;
   
-  text_ = make_item ("VocalName");
+  text_ = make_item ("VocalName", SCM_EOL);
       
   if (text_->get_property ("text") != txt)
     text_->set_property ("text", txt);
-  announce_grob (text_, SCM_EOL);
+  
 }