]> git.donarmstrong.com Git - lilypond.git/commitdiff
Stop quite weird positioning for dots
authorDavid Kastrup <dak@gnu.org>
Tue, 30 Apr 2013 16:37:17 +0000 (18:37 +0200)
committerDavid Kastrup <dak@gnu.org>
Sun, 26 May 2013 00:33:01 +0000 (02:33 +0200)
Some code here used a translation on dots that should never have had
an effect but causes problems in relation to the issue 3330 fix.

lily/dots.cc

index 43c47b77199a4576a7de3890f8011d485e925e84..20503ca5ae4bfc414a3af60abf7190d6ec985f34 100644 (file)
@@ -62,7 +62,6 @@ Dots::print (SCM d)
 
       for (int i = scm_to_int (c); i--;)
         {
-          d.translate_axis (2 * dw, X_AXIS);
           mol.add_at_edge (X_AXIS, RIGHT, d, dw);
         }
     }