mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-06-18 08:21:53 +00:00
#1193 Export space character to TTF correctly
This commit is contained in:
@@ -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++;
|
||||
|
||||
Reference in New Issue
Block a user