Merge pull request #88 from processing/fix_mac_os_save

This commit is contained in:
Ben Fry
2020-08-15 08:47:44 -04:00
committed by GitHub
9 changed files with 127 additions and 9 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;