Merge remote-tracking branch

'origin/GP-3631_dev747368_PR-5550_oldshensheep_fix-npe-LocalFileChooserModel'
(Closes #5550)
This commit is contained in:
Ryan Kurtz 2023-07-13 12:43:18 -04:00
commit 627382c8a9

View file

@ -260,6 +260,9 @@ public class LocalFileChooserModel implements GhidraFileChooserModel {
}
Icon rootIcon = FS_VIEW.getSystemIcon(root); // possibly a slow call
if (rootIcon == null) {
rootIcon = PROBLEM_FILE_ICON;
}
iconMap.put(root, rootIcon);
callback.call();
}