Skip to content

Commit 8e4ce4c

Browse files
committed
Serial monitor font is scaled too
1 parent 5642c29 commit 8e4ce4c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/src/processing/app/AbstractTextMonitor.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ public AbstractTextMonitor(BoardPort boardPort) {
4343
protected void onCreateWindow(Container mainPane) {
4444
Font consoleFont = Theme.getFont("console.font");
4545
Font editorFont = PreferencesData.getFont("editor.font");
46-
Font font = new Font(consoleFont.getName(), consoleFont.getStyle(), editorFont.getSize());
46+
Font font = Theme.scale(new Font(consoleFont.getName(), consoleFont.getStyle(), editorFont.getSize()));
4747

4848
mainPane.setLayout(new BorderLayout());
4949

0 commit comments

Comments
 (0)