mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2024-11-21 19:42:14 +00:00
GP-3821 - Updated the Open Program dialog to select the current program
This commit is contained in:
parent
9d67b8c6ef
commit
52f0367961
@ -635,6 +635,13 @@ public class ProgramManagerPlugin extends Plugin implements ProgramManager, Opti
|
||||
|
||||
OpenVersionedFileDialog<Program> openDialog =
|
||||
new OpenVersionedFileDialog<>(tool, "Open Program", Program.class);
|
||||
|
||||
DomainFile startFile = null;
|
||||
Program p = getCurrentProgram();
|
||||
if (p != null) {
|
||||
startFile = p.getDomainFile();
|
||||
}
|
||||
openDialog.selectDomainFile(startFile);
|
||||
openDialog.setHelpLocation(new HelpLocation(HelpTopics.PROGRAM, "Open_File_Dialog"));
|
||||
|
||||
openDialog.addOkActionListener(e -> {
|
||||
|
Loading…
Reference in New Issue
Block a user