]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/font-size-engraver.cc
* scm/define-markup-commands.scm (text): add \text markup command.
[lilypond.git] / lily / font-size-engraver.cc
index a5f7848c7f455063899787b15ba332d2fe94b7a4..d1ac0e634b5cbce42ec98a4dcb02707b3836ac0e 100644 (file)
@@ -30,15 +30,15 @@ Font_size_engraver::acknowledge_grob (Grob_info gi)
   /*
     We only want to process a grob once.
   */
-  if (gi.origin_trans_->context () != context ())
+  if (gi.context () != context ())
     return;
 
   if (scm_is_number (sz) && scm_to_double (sz))
     {
       Real font_size = scm_to_double (sz);
 
-      font_size += robust_scm2double (gi.grob_->get_property ("font-size"), 0);
-      gi.grob_->set_property ("font-size", scm_make_real (font_size));
+      font_size += robust_scm2double (gi.grob ()->get_property ("font-size"), 0);
+      gi.grob ()->set_property ("font-size", scm_make_real (font_size));
     }
 }