First letterSpacing implementation attempt

This commit is contained in:
Mikael Sand
2017-06-20 22:04:41 +03:00
parent a168a2ae6d
commit dac969b944
5 changed files with 47 additions and 7 deletions

View File

@@ -23,7 +23,9 @@ function fontDiffer(a, b) {
return a.fontSize !== b.fontSize ||
a.fontFamily !== b.fontFamily ||
a.fontStyle !== b.fontStyle ||
a.fontWeight !== b.fontWeight;
a.fontWeight !== b.fontWeight ||
a.kerning !== b.kerning ||
a.letterSpacing !== b.letterSpacing;
}
const ViewBoxAttributes = {