Switch to VAqua on Mac for dark mode and non-terrible jfilechooser.

This commit is contained in:
A Pottinger
2020-04-19 23:12:50 -07:00
parent 865281a0b1
commit a4f112ce10
6 changed files with 71 additions and 4 deletions

View File

@@ -610,7 +610,7 @@ public class VariableInspector extends JDialog {
@Override
public Component getTableCellRendererComponent(JTable table, Object value, boolean isSelected, boolean hasFocus, int row, int column) {
Component c = super.getTableCellRendererComponent(table, value, isSelected, hasFocus, row, column);
setForeground(tree.isEnabled() ? Color.BLACK : Color.GRAY);
//setForeground(tree.isEnabled() ? Color.BLACK : Color.GRAY);
if (value instanceof VariableNode) {
VariableNode var = (VariableNode) value;