Skip to content

Commit

Permalink
Fix some tree UI issues on macOS
Browse files Browse the repository at this point in the history
  • Loading branch information
m-dzianishchyts committed Jun 25, 2024
1 parent f711482 commit 67dc477
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -83,9 +83,12 @@ private void overrideUIDefaults() {
UIManager.put("SplitPane.border", BorderFactory.createEmptyBorder());
UIManager.put("SplitPane.background", darkGrey);
UIManager.put("Tree.rendererFillBackground", Boolean.TRUE);
UIManager.put("Tree.paintLines", Boolean.FALSE);
UIManager.put("ComboBox.background", Color.WHITE);
UIManager.put("ComboBox.selectionBackground", darkGrey);
UIManager.put("ComboBox.selectionForeground", Color.BLACK);
UIManager.put("CheckBox.background", Color.WHITE);
UIManager.put("Tree.background", Color.WHITE);
UIManager.put("Tree.selectionForeground", Color.BLACK);
UIManager.put("Tree.selectionBackground", lightGrey);
UIManager.put("Tree.selectionBorderColor", lightGrey);
Expand Down

0 comments on commit 67dc477

Please sign in to comment.