Thanks,
http://code.google.com/p/lilypond/issues/detail?id=169

- Graham

Trevor Bača wrote:
Hi,

Proportional spacing handles skips incorrectly.

The spacing of all three scores below should match. The second score
exhibits incorrect spacing. (The third score shows a workaround using
an invisible rest in place of the skip.)

[The skip spacing bug has been present since the first release of the
proportional notation package and so wasn't introduced in the 2.9
series of releases.]


%%% BEGIN %%%

\version "2.11.0"

\new Score \with {
  propotionalNotationDuration = #(ly:make-moment 1 64)
} {
  \new Staff {
     c'4
     c'4 % proportional spacing ok here with notes
     c'4
     c'4
  }
}

\new Score \with {
  propotionalNotationDuration = #(ly:make-moment 1 64)
} {
  \new Staff {
     c'4
     s4  % proportional spacing freaks out here because of the skip -- BUG
     c'4
     c'4
  }
}

\new Score \with {
  propotionalNotationDuration = #(ly:make-moment 1 64)
} {
  \new Staff {
     c'4
     \once \override Rest #'transparent = ##t
     r4  % propotional spacing ok here with notes and rests -- WORKAROUND
     c'4
     c'4
  }
}

%%% END %%%



------------------------------------------------------------------------

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



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

Reply via email to