Issue 169: Proportional spacing handles skips incorrectly
http://code.google.com/p/lilypond/issues/detail?id=169

Comment #3 by trevorbaca:
Hi Graham,

Please mark this bug as closed. All that's necessary to make the example work is the setting \override Score.SpacingSpanner #'uniform-stretching = ##t. Here's a visual
example in case anyone comes across this (spurious) bug later.


%%% BEGIN %%%

\version "2.11.34"

% reference score; everything spaces proportionally
\new Staff {
  \set Score.proportionalNotationDuration = #(ly:make-moment 1 16)
  c'4 c'4 c'4 c'4
}

% spurious "bug" score;
% skip takes up too much space and throws off spacing
\new Staff {
  \set Score.proportionalNotationDuration = #(ly:make-moment 1 16)
  c'4 s4 c'4 c'4
}

% "fixed" score;
% setting uniform-stretching causes the skip to consume the correct amount of space;
% everything now spaces in the reference example at top.
\new Staff {
  \override Score.SpacingSpanner #'uniform-stretching = ##t
  \set Score.proportionalNotationDuration = #(ly:make-moment 1 16)
  c'4 s4 c'4 c'4
}

%%% END %%%


Setting Score.proportionalNotationDuration is always supposed to happen together with setting Score.SpacingSpanner #'uniform-stretching = ##t. But this fact is easily
overlooked because I've failed to include this information in 11.6.5 
"Proportional
notation". I'll write a quick doc adjustment and submit to you.


Attachments:
        169-fixed.png  9.6 KB



--
You received this message because you are listed in the owner
or CC fields of this issue, or because you starred this issue.
You may adjust your issue notification preferences at:
http://code.google.com/hosting/settings


_______________________________________________
bug-lilypond mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/bug-lilypond

Reply via email to