X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Flyric-engraver.cc;h=850326cb57d7cfd8b5a10522bb926db916eeb12f;hb=460f573a185f76f076b572b33368434a1548193d;hp=bbaa005cdffd9176f13adfc78d676a777c17e8f0;hpb=15e565fef41ab50d140c3028bc6d9cff1a43a56a;p=lilypond.git diff --git a/lily/lyric-engraver.cc b/lily/lyric-engraver.cc index bbaa005cdf..850326cb57 100644 --- a/lily/lyric-engraver.cc +++ b/lily/lyric-engraver.cc @@ -24,7 +24,6 @@ protected: virtual void stop_translation_timestep (); virtual bool try_music (Music *); virtual void process_music (); - virtual void start_translation_timestep (); public: TRANSLATOR_DECLARATIONS(Lyric_engraver); @@ -63,16 +62,6 @@ Lyric_engraver::process_music () 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()); } } @@ -85,11 +74,6 @@ Lyric_engraver::stop_translation_timestep () typeset_grob (text_); text_ =0; } -} - -void -Lyric_engraver::start_translation_timestep () -{ req_ =0; }