mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-10 12:32:20 +02:00
Added Find All References to right-click menu
This commit is contained in:
parent
caf1ea54a4
commit
8f5b95b7af
1 changed files with 4 additions and 0 deletions
|
@ -3009,6 +3009,10 @@ namespace IDE.ui
|
|||
menuItem.SetDisabled(!hasText);
|
||||
menuItem.mOnMenuItemSelected.Add(new (evt) => gApp.GoToDefinition(true));
|
||||
|
||||
menuItem = menu.AddItem("Find All References");
|
||||
menuItem.SetDisabled(!hasText);
|
||||
menuItem.mOnMenuItemSelected.Add(new (evt) => gApp.Cmd_FindAllReferences());
|
||||
|
||||
menuItem = menu.AddItem("Rename Symbol");
|
||||
menuItem.SetDisabled(!hasText);
|
||||
menuItem.mOnMenuItemSelected.Add(new (evt) => gApp.Cmd_RenameSymbol());
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue