GP-617: Fixing stepping. Fixes for object tree.

This commit is contained in:
d-millar
2021-01-22 17:50:10 +00:00
committed by Dan
parent 97b43a4c4e
commit 3ae09277f0
40 changed files with 773 additions and 260 deletions
@@ -251,6 +251,9 @@ public class DefaultEnumeratedColumnTableModel<C extends Enum<C> & EnumeratedTab
@Override
public void delete(R row) {
int rowIndex = modelData.indexOf(row);
if (rowIndex == -1) {
return;
}
modelData.remove(rowIndex);
fireTableRowsDeleted(rowIndex, rowIndex);
}