GP-4246 - PDB improve types processing - better queuing mechanism, remove placeholder types, delay resolve

This commit is contained in:
ghizard
2024-02-27 11:17:35 -05:00
parent 58f1f01799
commit f1495cb6a1
38 changed files with 1141 additions and 1541 deletions
@@ -50,7 +50,7 @@ public class FindDataTypeConflictCauseScript extends GhidraScript {
}
List<DataType> selectedDatatypes = dtmService.getSelectedDatatypes();
if (selectedDatatypes.size() != 1 || !(selectedDatatypes.get(0) instanceof Composite)) {
if (selectedDatatypes.size() != 1) {
popup("Select a single conflict datatype before running script");
return;
}