1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-24 15:26:15 +00:00

Merge pull request #87712 from akien-mga/revert-gdscript-uid-annotations-for-now

Revert "Add UID support to GDScript files" (for now)
This commit is contained in:
Rémi Verschelde
2024-01-29 21:34:59 +01:00
15 changed files with 15 additions and 307 deletions

View File

@@ -146,7 +146,6 @@ void ScriptTextEditor::set_edited_resource(const Ref<Resource> &p_res) {
ERR_FAIL_COND(p_res.is_null());
script = p_res;
script->connect_changed(callable_mp((ScriptEditorBase *)this, &ScriptEditorBase::reload_text));
code_editor->get_text_editor()->set_text(script->get_source_code());
code_editor->get_text_editor()->clear_undo_history();