mirror of
https://github.com/NationalSecurityAgency/ghidra
synced 2024-11-05 18:30:17 +00:00
Merge remote-tracking branch 'origin/GP-4099_Dan_fixControlTargetEnablement'
This commit is contained in:
commit
43eb46aeec
1 changed files with 2 additions and 2 deletions
|
@ -92,7 +92,7 @@ public enum ControlMode {
|
|||
|
||||
@Override
|
||||
public boolean isSelectable(DebuggerCoordinates coordinates) {
|
||||
return coordinates.isAliveAndPresent();
|
||||
return coordinates.isAlive();
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -153,7 +153,7 @@ public enum ControlMode {
|
|||
|
||||
@Override
|
||||
public boolean isSelectable(DebuggerCoordinates coordinates) {
|
||||
return coordinates.isAliveAndPresent();
|
||||
return coordinates.isAlive();
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
Loading…
Reference in a new issue