GP-4716 - Data Type Editors - Fixed the traversal order of the structure

editor
This commit is contained in:
dragonmacher 2024-06-26 19:11:04 -04:00
parent c95c7581d7
commit 6aadccc40a
7 changed files with 335 additions and 86 deletions

View file

@ -16,6 +16,7 @@
package help;
import docking.DefaultHelpService;
import ghidra.util.Msg;
/**
* Creates the HelpManager for the application. This is just a glorified global variable for
@ -28,7 +29,7 @@ public class Help {
/**
* Get the help service
*
* @return null if the call to setMainHelpSetURL() failed
* @return a non-null help service
*/
public static HelpService getHelpService() {
return helpService;
@ -36,6 +37,10 @@ public class Help {
// allows help services to install themselves
public static void installHelpService(HelpService service) {
if (service == null) {
Msg.debug(Help.class, "Attempted to install null help service");
return;
}
helpService = service;
}