diff --git a/Ghidra/Extensions/bundle_examples/scripts_with_activator/ActivatorExampleScript.java b/Ghidra/Extensions/bundle_examples/scripts_with_activator/ActivatorExampleScript.java index 756186ae17..ce77e697ac 100644 --- a/Ghidra/Extensions/bundle_examples/scripts_with_activator/ActivatorExampleScript.java +++ b/Ghidra/Extensions/bundle_examples/scripts_with_activator/ActivatorExampleScript.java @@ -17,7 +17,8 @@ //@category Examples.Bundle import docking.ActionContext; -import docking.action.*; +import docking.action.DockingAction; +import docking.action.ToolBarData; import ghidra.app.script.GhidraScript; import ghidra.app.services.CodeViewerService; import ghidra.app.services.ConsoleService; @@ -40,7 +41,7 @@ public class ActivatorExampleScript extends GhidraScript { println("The activator will remove the action if this bundle is deactivated,"); println(" e.g. if this script is modified and the bundle needs to be reloaded."); - DockingAction action = new DockingAction("Added by script!!", null, false) { + DockingAction action = new DockingAction("Added by script!!", null) { @Override public void actionPerformed(ActionContext context) { ConsoleService console = tool.getService(ConsoleService.class); diff --git a/Ghidra/Features/Base/src/main/help/help/topics/Tool/ToolOptions_Dialog.htm b/Ghidra/Features/Base/src/main/help/help/topics/Tool/ToolOptions_Dialog.htm index 5adc29b190..f65a794c98 100644 --- a/Ghidra/Features/Base/src/main/help/help/topics/Tool/ToolOptions_Dialog.htm +++ b/Ghidra/Features/Base/src/main/help/help/topics/Tool/ToolOptions_Dialog.htm @@ -59,9 +59,12 @@ the tool options. For example, the following keys cannot be changed: