Fixed: #1618 Export to PDF selectable text escaping and text size

This commit is contained in:
Jindra Petřík
2021-02-25 10:25:08 +01:00
parent 4498554a88
commit ae0e590bea
3 changed files with 2 additions and 1 deletions

View File

@@ -607,7 +607,7 @@ public class FrameExporter {
PDFGraphics g2 = (PDFGraphics) g;
if (existingFonts.containsKey(rec.fontId)) {
g2.setExistingTtfFont(existingFonts.get(rec.fontId));
g2.setExistingTtfFont(existingFonts.get(rec.fontId).deriveFont((float) textHeight));
} else {
FontExporter fe = new FontExporter();
File tempFile;