1
0
mirror of https://github.com/octoleo/plantuml.git synced 2024-06-09 03:32:33 +00:00

Fix Braille text descent calculation

This commit is contained in:
matthew16550 2021-10-29 15:12:57 +11:00
parent 7141113050
commit 107d1e2980

View File

@ -197,6 +197,11 @@ public enum FileFormat {
final double width = 3 * nb * quanta + 1;
return new Dimension2DDouble(width, height);
}
@Override
public double getDescent(UFont font, String text) {
return UGraphicBraille.QUANTA;
}
};
}