mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-06 03:50:02 +02:00
GP-3361: Fix D-key ambiguity in Debugger's static listing.
This commit is contained in:
parent
269ea1ae7a
commit
06d60fdf44
1 changed files with 9 additions and 0 deletions
|
@ -78,6 +78,15 @@ public class CurrentPlatformTraceDisassembleAction extends DockingAction {
|
|||
return reqs != null;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean isEnabledForContext(ActionContext context) {
|
||||
Reqs reqs = getReqs(context);
|
||||
if (reqs == null) {
|
||||
return false;
|
||||
}
|
||||
return super.isEnabledForContext(context);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void actionPerformed(ActionContext context) {
|
||||
Reqs reqs = getReqs(context);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue