We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2d7d03e commit b8b1fc8Copy full SHA for b8b1fc8
src/main/java/tech/fastj/graphics/game/Text2D.java
@@ -27,8 +27,8 @@ public class Text2D extends GameObject {
27
28
/** {@link Paint} representing the default color value of {@code (0, 0, 0)}. */
29
public static final Paint DefaultFill = Color.black;
30
- /** {@link Font} representing the default font of {@code Segoe UI Plain, 12px}. */
31
- public static final Font DefaultFont = new Font("Segoe UI", Font.PLAIN, 12);
+ /** {@link Font} representing the default font of {@code Tahoma 16px}. */
+ public static final Font DefaultFont = new Font("Tahoma", Font.PLAIN, 16);
32
33
private String text;
34
private Paint fillPaint;
0 commit comments