We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 7ab56aa + af5a3d7 commit 23a0232Copy full SHA for 23a0232
app/src/processing/app/Editor.java
@@ -1452,8 +1452,10 @@ public void selectTab(final int index) {
1452
// This must be run in the GUI thread
1453
SwingUtilities.invokeLater(() -> {
1454
codePanel.removeAll();
1455
- codePanel.add(tabs.get(index), BorderLayout.CENTER);
1456
- tabs.get(index).requestFocusInWindow(); // get the caret blinking
+ EditorTab selectedTab = tabs.get(index);
+ codePanel.add(selectedTab, BorderLayout.CENTER);
1457
+ selectedTab.applyPreferences();
1458
+ selectedTab.requestFocusInWindow(); // get the caret blinking
1459
// For some reason, these are needed. Revalidate says it should be
1460
// automatically called when components are added or removed, but without
1461
// it, the component switched to is not displayed. repaint() is needed to
0 commit comments