From: Joe Neeman Date: Tue, 24 Apr 2007 23:17:30 +0000 (+1000) Subject: Fix 338. X-Git-Tag: release/2.11.23-1~10^2~5 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=9c3032c39e39e9399d3af8885a1d46512abc832a;p=lilypond.git Fix 338. Make span-bars ignore transparent barlines. --- diff --git a/lily/span-bar.cc b/lily/span-bar.cc index 072b110e7a..993fafe14a 100644 --- a/lily/span-bar.cc +++ b/lily/span-bar.cc @@ -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);