Hey!
I am using the textio library in one of my projects, where I create a terminal using this code:
private final TextIO textIO;
private final TextTerminal<?> terminal;
//...
this.textIO = TextIoFactory.getTextIO();
this.terminal = textIO.getTextTerminal();
But since upgrading to Java 21 the terminal has a new font and isn't monofont.
Is this a known bug, or is my configuration lacking?
Note: It worked perfectly fine in java 18 and this only happens on Windows.
How it looks now

How it looked before

Hey!
I am using the textio library in one of my projects, where I create a terminal using this code:
But since upgrading to Java 21 the terminal has a new font and isn't monofont.
Is this a known bug, or is my configuration lacking?
Note: It worked perfectly fine in java 18 and this only happens on Windows.
How it looks now
How it looked before