diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2023-11-09 11:47:24 +0100 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2023-11-09 11:47:24 +0100 |
commit | 26f1c503ec867d1e0bed50ca35e85db3a784f168 (patch) | |
tree | 088211e2fd2a74e7cdefba1504956c0a864c5cfb /modules | |
parent | b153f4868aeea4a7128e235750017f96da3a6eee (diff) | |
parent | b04b54609206e6aa84d0c59f764f33570dfc62c1 (diff) | |
download | redot-engine-26f1c503ec867d1e0bed50ca35e85db3a784f168.tar.gz |
Merge pull request #84617 from YuriSizov/editor-this-one-is-for-all-my-subs
Fix node names of submenu items across the editor
Diffstat (limited to 'modules')
-rw-r--r-- | modules/mono/editor/GodotTools/GodotTools/GodotSharpEditor.cs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/modules/mono/editor/GodotTools/GodotTools/GodotSharpEditor.cs b/modules/mono/editor/GodotTools/GodotTools/GodotSharpEditor.cs index 6bdf207873..650afb4cdf 100644 --- a/modules/mono/editor/GodotTools/GodotTools/GodotSharpEditor.cs +++ b/modules/mono/editor/GodotTools/GodotTools/GodotSharpEditor.cs @@ -497,7 +497,10 @@ namespace GodotTools AddChild(new HotReloadAssemblyWatcher { Name = "HotReloadAssemblyWatcher" }); - _menuPopup = new PopupMenu(); + _menuPopup = new PopupMenu + { + Name = "CSharpTools", + }; _menuPopup.Hide(); AddToolSubmenuItem("C#", _menuPopup); |