Fix regression of diacritic placement of over-the-tie marks (#1092).
This commit is contained in:
parent
8f4c5e7ae3
commit
3e615f4329
5 changed files with 7 additions and 11 deletions
|
@ -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;
|
||||
}
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue