#1193 Export space character to TTF correctly

This commit is contained in:
Jindra Petřík
2016-03-08 09:58:57 +01:00
parent cccfc2e14d
commit ed28599307

View File

@@ -223,21 +223,6 @@ public class FontExporter {
};
seb.export();
char c = t.glyphToChar(i);
if (contours.isEmpty()) {
continue;
}
boolean hasContour = false;
for (FPoint[] cnt : contours) {
if (cnt.length > 0) {
hasContour = true;
break;
}
}
if (!hasContour) {
continue;
}
FGlyph g = f.addGlyph(c);
glyphCount++;