]> git.donarmstrong.com Git - lilypond.git/commitdiff
(print): don't round barlines; this produces
authorHan-Wen Nienhuys <hanwen@xs4all.nl>
Sun, 29 May 2005 10:01:32 +0000 (10:01 +0000)
committerHan-Wen Nienhuys <hanwen@xs4all.nl>
Sun, 29 May 2005 10:01:32 +0000 (10:01 +0000)
odd aliasing effects in Acroread.

ChangeLog
lily/bar-line.cc

index 94deefe4a1290aae8616a93614d19b033d5bc59c..c3f89021f90fdd1b7849e9426435694867d58996 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 2005-05-29  Han-Wen Nienhuys  <hanwen@xs4all.nl>
 
+       * lily/bar-line.cc (print): don't round barlines; this produces
+       odd aliasing effects in Acroread.
+
        * lily/timing-engraver.cc (process_music): robustness fix.
 
        * lily/context-def.cc (filter_engravers): bugfix.
index 7a90ebb7297e321d77d18ebb23fa793ee8927ad0..ee3e6b0cdd2a741fd51a2a5ae198a2bd9d132490 100644 (file)
@@ -34,7 +34,7 @@ Bar_line::print (SCM smob)
       if (sz <= 0)
        return SCM_EOL;
 
-      return compound_barline (me, str, sz, true).smobbed_copy ();
+      return compound_barline (me, str, sz, false).smobbed_copy ();
     }
   return SCM_EOL;
 }