* Add special k-dot shape (#1978).
This commit is contained in:
parent
35c252a174
commit
0e6967c328
5 changed files with 108 additions and 42 deletions
|
@ -132,6 +132,17 @@ export const Joining = {
|
|||
}
|
||||
};
|
||||
|
||||
export const HintClass = {
|
||||
get(glyph) {
|
||||
if (glyph && glyph.related) return glyph.related.hintClass;
|
||||
else return null;
|
||||
},
|
||||
set(glyph, script, style) {
|
||||
if (!glyph.related) glyph.related = {};
|
||||
glyph.related.hintClass = [script, style];
|
||||
}
|
||||
};
|
||||
|
||||
///////////////////////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
const CvTagCache = new Map();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue