mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2024-11-21 11:31:43 +00:00
GP-5117 - Updated the action to show a provider to be a toggle action,
hiding the provider if already visible
This commit is contained in:
parent
b80cfdff3f
commit
ef5036fe47
@ -1100,6 +1100,11 @@ public abstract class ComponentProvider implements HelpDescriptor, ActionContext
|
||||
@Override
|
||||
public void actionPerformed(ActionContext context) {
|
||||
|
||||
if (isShowing()) {
|
||||
setVisible(false);
|
||||
return;
|
||||
}
|
||||
|
||||
DockingWindowManager myDwm = DockingWindowManager.getInstance(getComponent());
|
||||
if (myDwm == null) {
|
||||
// this can happen when the tool loses focus
|
||||
|
Loading…
Reference in New Issue
Block a user