mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-03 09:49:23 +02:00
GP-1 fixed another mistake in the open/close variables action
This commit is contained in:
parent
cfab7b13df
commit
48f2a03469
1 changed files with 1 additions and 1 deletions
|
@ -509,7 +509,7 @@ public class CodeViewerProvider extends NavigatableComponentProviderAdapter
|
|||
private void toggleShowVariables(Address address) {
|
||||
ListingModel model = listingPanel.getListingModel();
|
||||
boolean open = model.areFunctionVariablesOpen(address);
|
||||
model.setAllFunctionVariablesOpen(!open);
|
||||
model.setFunctionVariablesOpen(address, !open);
|
||||
setLocation(new VariablesOpenCloseLocation(program, address));
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue