GP-3924 Added askValues() method to GhidraScript. Allows users to enter

multiple values with one dialog.
This commit is contained in:
ghidragon 2023-10-17 15:22:21 -04:00
parent 87bd074603
commit e71d5f8faf
45 changed files with 4856 additions and 235 deletions

View file

@ -33,8 +33,7 @@ public class ReloadSleighLanguage extends GhidraScript {
language.reloadLanguage(monitor);
}
catch (IOException e) {
Msg.showError(this, this.state.getParamPanel(), "Reload Sleigh Language Failed",
e.getMessage());
Msg.showError(this, null, "Reload Sleigh Language Failed", e.getMessage());
return;
}
currentProgram.setLanguage(language, null, true, monitor);