Fix regression of diacritic placement of over-the-tie marks (#1092).

This commit is contained in:
be5invis 2021-05-29 16:49:33 -07:00
parent 8f4c5e7ae3
commit 3e615f4329
5 changed files with 7 additions and 11 deletions

View file

@ -77,12 +77,12 @@ const TieMark = {
const TieGlyph = {
get(glyph) {
if (glyph && glyph.related) return glyph.related.TieMark;
if (glyph && glyph.related) return glyph.related.TieGlyph;
else return null;
},
set(glyph) {
if (!glyph.related) glyph.related = {};
glyph.related.TieMark = true;
glyph.related.TieGlyph = true;
}
};