mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-05 02:39:44 +02:00
GP-4716 - Data Type Editors - Fixed the traversal order of the structure
editor
This commit is contained in:
parent
c95c7581d7
commit
6aadccc40a
7 changed files with 335 additions and 86 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue