mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-06 03:50:02 +02:00
GP-1471: Fix action descriptions: "Select Modules, etc. by dynamic selection"
This commit is contained in:
parent
b5537b91e5
commit
1ac71af402
2 changed files with 2 additions and 2 deletions
|
@ -428,7 +428,7 @@ public class DebuggerRegionsProvider extends ComponentProviderAdapter {
|
|||
.buildAndInstallLocal(this);
|
||||
actionSelectAddresses = new SelectAddressesAction();
|
||||
actionSelectRows = SelectRowsAction.builder(plugin)
|
||||
.description("Select regions by trace selection")
|
||||
.description("Select regions by dynamic selection")
|
||||
.enabledWhen(ctx -> currentTrace != null)
|
||||
.onAction(this::activatedSelectCurrent)
|
||||
.buildAndInstallLocal(this);
|
||||
|
|
|
@ -957,7 +957,7 @@ public class DebuggerModulesProvider extends ComponentProviderAdapter {
|
|||
.buildAndInstallLocal(this);
|
||||
actionSelectCurrent = SelectRowsAction.builder(plugin)
|
||||
.enabledWhen(ctx -> currentTrace != null)
|
||||
.description("Select modules and sections by trace selection")
|
||||
.description("Select modules and sections by dynamic selection")
|
||||
.onAction(this::activatedSelectCurrent)
|
||||
.buildAndInstallLocal(this);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue