mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-05 19:42:36 +02:00
GP-5438: Fix 'Select All' and others in Dynamic Listing. (syncing needs follow-up work.)
This commit is contained in:
parent
b319b3df7f
commit
d7f63a9075
42 changed files with 432 additions and 358 deletions
|
@ -172,11 +172,10 @@ public class VgSatelliteFeaturette<V extends VisualVertex,
|
|||
return false;
|
||||
}
|
||||
|
||||
if (!(context instanceof VisualGraphActionContext)) {
|
||||
if (!(context instanceof VisualGraphActionContext vgContext)) {
|
||||
return false;
|
||||
}
|
||||
|
||||
VisualGraphActionContext vgContext = (VisualGraphActionContext) context;
|
||||
return vgContext.shouldShowSatelliteActions();
|
||||
}
|
||||
};
|
||||
|
@ -200,11 +199,10 @@ public class VgSatelliteFeaturette<V extends VisualVertex,
|
|||
return false;
|
||||
}
|
||||
|
||||
if (!(context instanceof VisualGraphActionContext)) {
|
||||
if (!(context instanceof VisualGraphActionContext vgContext)) {
|
||||
return false;
|
||||
}
|
||||
|
||||
VisualGraphActionContext vgContext = (VisualGraphActionContext) context;
|
||||
return vgContext.shouldShowSatelliteActions();
|
||||
}
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue