Skip to content

Commit

Permalink
Merge pull request #8 from dbenjaminmiller/main
Browse files Browse the repository at this point in the history
Adjust grace note slash and dot handling
  • Loading branch information
tr-igem authored Jul 17, 2024
2 parents 10233dd + e1d85a3 commit 9fb5a90
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions ly/esmufl.ily
Original file line number Diff line number Diff line change
Expand Up @@ -1175,11 +1175,11 @@ ekmMakeClusters =
(let cat ((c (max count 0))
(r (if pad point-stencil empty-stencil)))
(if (zero? c) r
(cat (1- c) (ly:stencil-stack r X RIGHT dot ext))))))
(cat (1- c) (ly:stencil-stack r X RIGHT dot 0))))))

#(define (ekm-dots grob)
(ekm-cat-dots
(ly:grob-property grob 'dot-count)
1
(ekm-cchar grob 0 #xE1E7)
#t))

Expand Down Expand Up @@ -3418,7 +3418,7 @@ ekmSmuflOn =
\override NoteHead.stencil = #ekm-notehead
#})
(on 'dot #{
\override Dots.stencil = #ekm-dots
\override Dots.dot-stencil = #ekm-dots
#})
(on 'flag #{
\override Stem.details.lengths = #(ekm-stemlength 'default)
Expand Down Expand Up @@ -3507,7 +3507,7 @@ ekmSmuflOff =
\revert NoteHead.stencil
#})
(on 'dot #{
\revert Dots.stencil
\revert Dots.dot-stencil
#})
(on 'flag #{
\revert Stem.details.lengths
Expand Down

0 comments on commit 9fb5a90

Please sign in to comment.