diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2021-04-04 15:46:01 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-04 15:46:01 +0200 |
commit | 29c7319f609589dca07e2209ee3a12b5552335f6 (patch) | |
tree | 3884c477a0e04e09f56d55e3326a6a9f85068427 | |
parent | ed2f51b15fee22a35d2a975fd77a70fc291bd8de (diff) | |
parent | 5af08e5e6595ad9694ee0d224922417499a2c8b9 (diff) |
Merge pull request #47617 from Chaosus/vs_fix_typo
Fix typo in visual shader context menu
-rw-r--r-- | editor/plugins/visual_shader_editor_plugin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/plugins/visual_shader_editor_plugin.cpp b/editor/plugins/visual_shader_editor_plugin.cpp index 69bdc05b3a..394d1f887d 100644 --- a/editor/plugins/visual_shader_editor_plugin.cpp +++ b/editor/plugins/visual_shader_editor_plugin.cpp @@ -2557,7 +2557,7 @@ void VisualShaderEditor::_graph_gui_input(const Ref<InputEvent> &p_event) { } if (selected_uniforms.size() > 0) { - popup_menu->add_item(TTR("Convert Uniforms(s) to Constant(s)"), NodeMenuOptions::CONVERT_UNIFORMS_TO_CONSTANTS); + popup_menu->add_item(TTR("Convert Uniform(s) to Constant(s)"), NodeMenuOptions::CONVERT_UNIFORMS_TO_CONSTANTS); } } |