From dcf5244381dbcdaea558c3bb4f1bbfffab949942 Mon Sep 17 00:00:00 2001 From: Yyf2333 <2514537033@qq.com> Date: Tue, 4 Feb 2025 23:56:07 +0800 Subject: [PATCH] Refactor EditorNode get icon. Co-authored-by: Tomasz Chabora --- editor/editor_node.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/editor/editor_node.cpp b/editor/editor_node.cpp index 40848610c62a..fc2a65565ab9 100644 --- a/editor/editor_node.cpp +++ b/editor/editor_node.cpp @@ -4941,7 +4941,7 @@ Ref EditorNode::get_class_icon(const String &p_class, const String &p String script_path; if (ScriptServer::is_global_class(p_class)) { script_path = ScriptServer::get_global_class_path(p_class); - } else if (ResourceLoader::exists(p_class)) { // If the script is not a class_name we check if the script resource exists. + } else if (!p_class.get_extension().is_empty() && ResourceLoader::exists(p_class)) { // If the script is not a class_name we check if the script resource exists. script_path = p_class; }