We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5642c29 commit 8e4ce4cCopy full SHA for 8e4ce4c
app/src/processing/app/AbstractTextMonitor.java
@@ -43,7 +43,7 @@ public AbstractTextMonitor(BoardPort boardPort) {
43
protected void onCreateWindow(Container mainPane) {
44
Font consoleFont = Theme.getFont("console.font");
45
Font editorFont = PreferencesData.getFont("editor.font");
46
- Font font = new Font(consoleFont.getName(), consoleFont.getStyle(), editorFont.getSize());
+ Font font = Theme.scale(new Font(consoleFont.getName(), consoleFont.getStyle(), editorFont.getSize()));
47
48
mainPane.setLayout(new BorderLayout());
49
0 commit comments