Merge pull request #47617 from Chaosus/vs_fix_typo

Fix typo in visual shader context menu
This commit is contained in:
Rémi Verschelde 2021-04-04 15:46:01 +02:00 committed by GitHub
commit 29c7319f60
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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);
}
}