瀏覽代碼

Merge pull request #97134 from timothyqiu/file-system

Fix inconsistency in FileSystem naming in shader editor menu
Rémi Verschelde 11 月之前
父節點
當前提交
84dcdde908
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      editor/plugins/shader_editor_plugin.cpp

+ 1 - 1
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);
 		}
 	}
 }