]> git.donarmstrong.com Git - lilypond.git/commitdiff
Fix 338.
authorJoe Neeman <joeneeman@gmail.com>
Tue, 24 Apr 2007 23:17:30 +0000 (09:17 +1000)
committerJoe Neeman <joeneeman@gmail.com>
Tue, 24 Apr 2007 23:17:30 +0000 (09:17 +1000)
Make span-bars ignore transparent barlines.

lily/span-bar.cc

index 072b110e7a1ef1b66cb6ad468dcb26050f8cccf1..993fafe14a70581aad7f852c4d53f2b806056d04 100644 (file)
@@ -62,7 +62,7 @@ Span_bar::print (SCM smobbed_me)
     {
       Grob *bar = elements[i];
       Interval ext = bar->extent (refp, Y_AXIS);
-      if (ext.is_empty ())
+      if (ext.is_empty () || to_boolean (bar->get_property ("transparent")))
        continue;
 
       extents.push_back (ext);