From 8a7713eb2d7858aff3c59913fb0bf299a5c6e4d6 Mon Sep 17 00:00:00 2001 From: Haoyu Qiu Date: Wed, 18 Sep 2024 10:59:31 +0800 Subject: [PATCH] Fix inconsistency in FileSystem naming in shader editor menu --- editor/plugins/shader_editor_plugin.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/editor/plugins/shader_editor_plugin.cpp b/editor/plugins/shader_editor_plugin.cpp index e0155d44f52..6bfe78c216a 100644 --- a/editor/plugins/shader_editor_plugin.cpp +++ b/editor/plugins/shader_editor_plugin.cpp @@ -405,7 +405,7 @@ void ShaderEditorPlugin::_setup_popup_menu(PopupMenuType p_type, PopupMenu *p_me if (p_type == CONTEXT_VALID_ITEM) { p_menu->add_separator(); p_menu->add_item(TTR("Copy Script Path"), COPY_PATH); - p_menu->add_item(TTR("Show in File System"), SHOW_IN_FILE_SYSTEM); + p_menu->add_item(TTR("Show in FileSystem"), SHOW_IN_FILE_SYSTEM); } } }