Re: BarCounter.nw
Reply #11 –
Answer to myself: "Exclude Bar Count" does currently not work with BarCounter. But I made it work by changing line 142 of the script from
local isBar = (objt == 'Bar')
to
local isBar = (objt == 'Bar' and drawidx1:objProp('XBarCnt') ~= 'Y')
Maybe this could be integrated into the official version of the plugin (the flag isBar could be renamed to isCountingBar to make its intent clearer).
Edit: (At least) also line 111 needs to change - otherwise one gets funny jumping measure numbers:
elseif objt == 'Bar' and obj:objProp('XBarCnt') ~= 'Y' then
H.M.