]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/paper-column-engraver.cc
remove font-magnification feature for non-Pango backends.
[lilypond.git] / lily / paper-column-engraver.cc
index af67b67fe21d2a727a7328cec659c92aaa7ae189..fb0ab67c81d796588428f8a25b36ab2204b389ba 100644 (file)
@@ -202,6 +202,19 @@ Paper_column_engraver::stop_translation_timestep ()
 
   first_ = false;
   break_events_.clear ();
+
+
+  SCM mpos = get_property ("measurePosition");
+  SCM barnum = get_property ("internalBarNumber");
+  if (unsmob_moment (mpos)
+      && scm_is_integer (barnum))
+    {
+      SCM where = scm_cons (barnum,
+                           mpos);
+
+      command_column_->set_property ("rhythmic-location", where);
+      musical_column_->set_property ("rhythmic-location", where);
+    }
 }
 
 void
@@ -231,8 +244,6 @@ ADD_TRANSLATOR (Paper_column_engraver,
                /* create */
                "PaperColumn "
                "NonMusicalPaperColumn",
-               
-               /* accept */ "break-event",
                /* read */
                 "forbidBreak "
                ,