소스 검색

Changed the name displayed in the Script tab for built-in script with a more descriptive one

Samuele Zolfanelli 7 년 전
부모
커밋
375c94510f
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. 2 1
      editor/plugins/script_editor_plugin.cpp

+ 2 - 1
editor/plugins/script_editor_plugin.cpp

@@ -1549,9 +1549,10 @@ void ScriptEditor::_update_script_names() {
 		ScriptEditorBase *se = Object::cast_to<ScriptEditorBase>(tab_container->get_child(i));
 		if (se) {
 
-			String name = se->get_name();
 			Ref<Texture> icon = se->get_icon();
 			String path = se->get_edited_script()->get_path();
+			bool built_in = !path.is_resource_file();
+			String name = built_in ? path.get_file() : se->get_name();
 
 			_ScriptEditorItemData sd;
 			sd.icon = icon;