diff options
author | kobewi <kobewi4e@gmail.com> | 2024-11-14 23:22:59 +0100 |
---|---|---|
committer | kobewi <kobewi4e@gmail.com> | 2024-11-14 23:22:59 +0100 |
commit | 5be53c36c044869e90084864d8ee1e961295b263 (patch) | |
tree | 28e051c486a31af56fb386bf87eb5c10ddbad1f2 /editor/plugins | |
parent | 673f396677654220d7e1d5b6fb5ed3b50126b4e6 (diff) | |
download | redot-engine-5be53c36c044869e90084864d8ee1e961295b263.tar.gz |
Simplify some UID conversions
Diffstat (limited to 'editor/plugins')
-rw-r--r-- | editor/plugins/script_text_editor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/plugins/script_text_editor.cpp b/editor/plugins/script_text_editor.cpp index b45b30b52e..fc8b8aa49f 100644 --- a/editor/plugins/script_text_editor.cpp +++ b/editor/plugins/script_text_editor.cpp @@ -951,7 +951,7 @@ void ScriptTextEditor::_lookup_symbol(const String &p_symbol, int p_row, int p_c } else if (p_symbol.is_resource_file() || p_symbol.begins_with("uid://")) { String symbol = p_symbol; if (symbol.begins_with("uid://")) { - symbol = ResourceUID::get_singleton()->get_id_path(ResourceUID::get_singleton()->text_to_id(symbol)); + symbol = ResourceUID::uid_to_path(symbol); } List<String> scene_extensions; |