mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-06 03:50:02 +02:00
GP-4583 Fixed issue where open program were not being shown when the OpenVersionedFileDialog was being shown from diff
This commit is contained in:
parent
c4ea004218
commit
a3f16ff05f
30 changed files with 790 additions and 661 deletions
|
@ -15,6 +15,8 @@
|
|||
*/
|
||||
package ghidra.feature.fid.plugin;
|
||||
|
||||
import static ghidra.framework.main.DataTreeDialogType.*;
|
||||
|
||||
import java.awt.BorderLayout;
|
||||
import java.awt.Component;
|
||||
import java.io.File;
|
||||
|
@ -225,7 +227,7 @@ public class PopulateFidDialog extends DialogComponentProvider {
|
|||
JButton browseButton = new BrowseButton();
|
||||
browseButton.addActionListener(e -> {
|
||||
final DataTreeDialog dialog = new DataTreeDialog(tool.getToolFrame(),
|
||||
"Choose Root Folder", DataTreeDialog.CHOOSE_FOLDER);
|
||||
"Choose Root Folder", CHOOSE_FOLDER);
|
||||
tool.showDialog(dialog);
|
||||
DomainFolder domainFolder = dialog.getDomainFolder();
|
||||
if (domainFolder != null) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue