diff options
author | Haoyu Qiu <timothyqiu32@gmail.com> | 2024-09-18 10:59:31 +0800 |
---|---|---|
committer | Haoyu Qiu <timothyqiu32@gmail.com> | 2024-09-18 10:59:31 +0800 |
commit | 8a7713eb2d7858aff3c59913fb0bf299a5c6e4d6 (patch) | |
tree | 6ff172900967be4b6eda8ccff6eeea2a352bde74 /editor/plugins | |
parent | 922ae7e7b5fb6c8733a7c03a3c797773f97d9162 (diff) | |
download | redot-engine-8a7713eb2d7858aff3c59913fb0bf299a5c6e4d6.tar.gz |
Fix inconsistency in FileSystem naming in shader editor menu
Diffstat (limited to 'editor/plugins')
-rw-r--r-- | editor/plugins/shader_editor_plugin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/plugins/shader_editor_plugin.cpp b/editor/plugins/shader_editor_plugin.cpp index e0155d44f5..6bfe78c216 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); } } } |