[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: mensural barlines
From: |
Trevor Bača |
Subject: |
Re: mensural barlines |
Date: |
Wed, 16 May 2007 10:59:42 -0500 |
On 5/16/07, karim haddad <address@hidden> wrote:
Hi another issue
in former version 2.11.20
using \override BarLine #'transparent = ##t
with a StaffGroup used to work.
now with the latest version 2.11.23-1 this doesn;t seem to work anymore
any ideas ??
Hi Karim,
Are you sure you've got the \override in the right context? The
BarLine grob lives in the Score context (and not the Staff or Voice
contexts). So ...
%%% BEGIN %%%
\version "2.11.22"
\new Staff {
\override Score.BarLine #'transparent = ##t
c'1 c'1 c'1 c'1
}
%%% END %%%
... works while this one ...
%%% BEGIN %%%
\version "2.11.22"
\new Staff {
\override BarLine #'transparent = ##t
c'1 c'1 c'1 c'1
}
%%% END %%%
... doesn't.
Maybe that's why?
--
Trevor Bača
address@hidden