]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/lyric-engraver.cc
*** empty log message ***
[lilypond.git] / lily / lyric-engraver.cc
index ff3ce86c3aa607a4e8cbf6ba8aeae09600331a2f..850326cb57d7cfd8b5a10522bb926db916eeb12f 100644 (file)
@@ -23,8 +23,7 @@ class Lyric_engraver : public Engraver
 protected:
   virtual void stop_translation_timestep ();
   virtual bool try_music (Music *);
-  virtual void process_acknowledged_grobs ();
-  virtual void start_translation_timestep ();
+  virtual void process_music ();
   
 public:
   TRANSLATOR_DECLARATIONS(Lyric_engraver);
@@ -56,25 +55,14 @@ Lyric_engraver::try_music (Music*r)
 }
 
 void
-Lyric_engraver::process_acknowledged_grobs ()
+Lyric_engraver::process_music ()
 {
   if (req_)
     {
       text_=  new Item (get_property ("LyricText"));
       
       text_->set_grob_property ("text", req_->get_mus_property ("text"));
-
-      /*
-       We can't reach the notehead where we're centered from here. So
-       we kludge.
-
- (UGH UGH, pulled amount of space out of thin air)
-      */
-      
-      text_->translate_axis (0.66, X_AXIS);
-      
-      announce_grob(text_, req_->self_scm());
-      req_ = 0;
+      announce_grob (text_, req_->self_scm());
     }
 }
 
@@ -86,11 +74,6 @@ Lyric_engraver::stop_translation_timestep ()
       typeset_grob (text_);
       text_ =0;
     }
-}
-
-void
-Lyric_engraver::start_translation_timestep ()
-{
   req_ =0;
 }