]> git.donarmstrong.com Git - lilypond.git/commitdiff
default position for a time signature is unconditionally 0
authorBenkő Pál <benko.pal@gmail.com>
Sat, 1 Sep 2012 13:49:49 +0000 (15:49 +0200)
committerDavid Kastrup <dak@gnu.org>
Fri, 19 Oct 2012 10:28:07 +0000 (12:28 +0200)
lily/time-signature.cc

index 263817c7082fc82b724b9b765965a312487d85ea..f00c2563f6fe4f71922577e5f0d4963ad41c2547 100644 (file)
 #include "font-interface.hh"
 #include "international.hh"
 #include "output-def.hh"
-#include "staff-symbol.hh"
-#include "staff-symbol-referencer.hh"
 #include "text-interface.hh"
-#include "warn.hh"
 
 /*
   TODO:
@@ -58,36 +55,6 @@ Time_signature::print (SCM smob)
   else
     m = numbered_time_signature (me, n, d);
 
-  /*
-    position the signature centred on the staff line
-    nearest to the middle of the staff
-  */
-  if (Grob *staff = Staff_symbol_referencer::get_staff_symbol (me))
-    {
-      std::vector<Real> const linepos = Staff_symbol::line_positions (staff);
-      if (!linepos.empty ())
-        {
-          Interval const span = Staff_symbol::line_span (staff);
-          Real const mid = span.center ();
-          Real pos = linepos.front ();
-          Real dist = fabs (pos - mid);
-          for (std::vector<Real>::const_iterator
-               i = linepos.begin (), e = linepos.end ();
-               ++i != e;)
-            {
-              double const d = fabs (*i - mid);
-              if (d < dist)
-                {
-                  pos = *i;
-                  dist = d;
-                }
-            }
-
-          m.translate_axis
-          (pos * Staff_symbol_referencer::staff_space (me) / 2, Y_AXIS);
-        }
-    }
-
   return m.smobbed_copy ();
 }