From 9c3032c39e39e9399d3af8885a1d46512abc832a Mon Sep 17 00:00:00 2001 From: Joe Neeman Date: Wed, 25 Apr 2007 09:17:30 +1000 Subject: [PATCH] Fix 338. Make span-bars ignore transparent barlines. --- lily/span-bar.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- 2.39.2