Skip to content

Commit

Permalink
[bug] Fix bug 37446
Browse files Browse the repository at this point in the history
  • Loading branch information
K0R0L committed Apr 9, 2018
1 parent 92d9599 commit b167b00
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion common/FontsFreeType/FontFile.js
Original file line number Diff line number Diff line change
Expand Up @@ -1061,7 +1061,7 @@
dstM.fVertBearingY = (srcM.vertBearingY >> 6);
dstM.fVertAdvance = (srcM.vertAdvance >> 6);

if (isFromPicker && (0 == dstM.fHoriAdvance))
if (isFromPicker && (0 == dstM.fHoriAdvance && 0 == srcM.width))
return null;

if (!isRaster)
Expand Down

0 comments on commit b167b00

Please sign in to comment.