Implement wordSpacing in extractFont

This commit is contained in:
Mikael Sand
2017-07-23 08:30:28 +03:00
parent dea6d2e8f0
commit dff02c3dbb
3 changed files with 3 additions and 0 deletions

View File

@@ -25,6 +25,7 @@ function fontDiffer(a, b) {
a.fontStyle !== b.fontStyle ||
a.fontWeight !== b.fontWeight ||
a.kerning !== b.kerning ||
a.wordSpacing !== b.wordSpacing ||
a.letterSpacing !== b.letterSpacing;
}