Skip to content

Commit

Permalink
Merge pull request #927 from henryso/fix-926
Browse files Browse the repository at this point in the history
Fixed placement of the horizontal episema on a torculus deminutus.
  • Loading branch information
eroux committed Feb 15, 2016
2 parents 8968c0f + f81be89 commit ea726c3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ As of v3.0.0 this project adheres to [Semantic Versioning](http://semver.org/).
- New bar spacing algorithm now accounts for translations (and other below lyrics stuff).
- Horizontal episema on initio debilis is now sized correctly (see [#880](https://github.com/gregorio-project/gregorio/issues/880)).
- Elisions immediately after the vowel are now properly left out of the center (see [#907](https://github.com/gregorio-project/gregorio/issues/907))
- A horizontal episema on the first note of a torculus deminutus is now placed correctly. See [#926](https://github.com/gregorio-project/gregorio/issues/926).

### Changed
- Adjustments to the heuristic for ledger lines to include adjacent notes (see [#862](https://github.com/gregorio-project/gregorio/issues/862)).
Expand Down
1 change: 1 addition & 0 deletions src/gregoriotex/gregoriotex-position.c
Original file line number Diff line number Diff line change
Expand Up @@ -1382,6 +1382,7 @@ static __inline void end_h_episema(height_computation *const h,
}
}
if (end && end->type == GRE_NOTE && is_connected_left(h->get_size(end))
&& !(end->u.note.liquescentia & L_DEMINUTUS)
&& h->last_connected_note
&& is_connected_right(h->get_size(h->last_connected_note))) {
if (h->last_connected_note->next) {
Expand Down

0 comments on commit ea726c3

Please sign in to comment.