]> git.donarmstrong.com Git - lilypond.git/blob - input/bugs/grace-stems.ly
1b8c6a3c2ece7c2cb00ddb506f97bed252e092cf
[lilypond.git] / input / bugs / grace-stems.ly
1 \version "1.3.148"
2 \header{
3 texidoc = "startGraceMusic should no-stem-extend to true, but there's no effect:
4 the two grace beams should be the same here.
5 "
6 }
7
8
9 \score { 
10   \context Voice \notes\relative c {
11     \grace { 
12       [f8 e8] 
13       \property Voice.Stem \override #'no-stem-extend = ##t
14       [f8 e8] 
15       \property Voice.Stem \revert #'no-stem-extend
16     }
17     a4
18         
19   }
20   \paper {
21     linewidth=-1.0
22   }  
23   \midi { }
24 }