Disabling edit button as well after removing item from list. #120

This commit is contained in:
Rob Greene 2023-10-22 19:52:27 -05:00
parent 709ce6b47f
commit 0bccdde28a
1 changed files with 1 additions and 0 deletions

View File

@ -176,6 +176,7 @@ public class ImportSelectFilesWizardPane extends WizardPane {
getWizard().removeImportSpecification(spec);
}
getRemoveButton().setEnabled(false);
getEditButton().setEnabled(false);
refreshTable();
}
});