Merge remote-tracking branch 'origin/GP-4041-dragonmacher-function-editor-fix' into patch

This commit is contained in:
Ryan Kurtz
2023-11-15 15:12:58 -05:00

View File

@@ -52,6 +52,8 @@ class StorageTableCellEditor extends AbstractCellEditor implements TableCellEdit
@Override
public Component getTableCellEditorComponent(final JTable table, Object value,
boolean isSelected, int row, int column) {
storage = null;
String stringValue = value == null ? "" : value.toString();
JTextField field = new JTextField(stringValue);
field.setBackground(getUneditableForegroundColor(isSelected));