From d1caca71133de1d18b2957194f2595219199df59 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jindra=20Pet=C5=99=C3=ADk?= Date: Sat, 18 Oct 2014 14:01:34 +0200 Subject: [PATCH] Font export of dot character --- .../jpexs/decompiler/flash/exporters/FontExporter.java | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/exporters/FontExporter.java b/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/exporters/FontExporter.java index af6b56378..05a7839de 100644 --- a/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/exporters/FontExporter.java +++ b/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/exporters/FontExporter.java @@ -12,7 +12,8 @@ * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public - * License along with this library. */ + * License along with this library. + */ package com.jpexs.decompiler.flash.exporters; import com.google.typography.font.sfntly.Font; @@ -173,10 +174,7 @@ public class FontExporter { char c = t.glyphToChar(i); if (contours.isEmpty()) { continue; - } - if (c == '.') { - continue; - } + } final FGlyph g = f.addGlyph(c); double adv = t.getGlyphAdvance(i); if (adv != -1) {