diff options
author | kobewi <kobewi4e@gmail.com> | 2023-07-08 15:03:54 +0200 |
---|---|---|
committer | kobewi <kobewi4e@gmail.com> | 2023-07-21 02:13:07 +0200 |
commit | 51f92d1100759f97b08aaa8f9b7da71e462e561e (patch) | |
tree | eea793d9201b5ae68db949044319f93e5cf20312 /editor/editor_data.cpp | |
parent | f8dbed4d0aef09ae7f4e3d66213268dba23a31d6 (diff) | |
download | redot-engine-51f92d1100759f97b08aaa8f9b7da71e462e561e.tar.gz |
Don't grab theme icons for scripts
Diffstat (limited to 'editor/editor_data.cpp')
-rw-r--r-- | editor/editor_data.cpp | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/editor/editor_data.cpp b/editor/editor_data.cpp index af7163eec1..0b2c2bea15 100644 --- a/editor/editor_data.cpp +++ b/editor/editor_data.cpp @@ -1154,15 +1154,6 @@ Ref<Texture2D> EditorData::get_script_icon(const Ref<Script> &p_script) { return ext_icon; } - // Look for the base type in the editor theme. - // This is only relevant for built-in classes. - const Control *gui_base = EditorNode::get_singleton()->get_gui_base(); - if (gui_base && gui_base->has_theme_icon(base_type, SNAME("EditorIcons"))) { - Ref<Texture2D> theme_icon = gui_base->get_theme_icon(base_type, SNAME("EditorIcons")); - _script_icon_cache[p_script] = theme_icon; - return theme_icon; - } - // If no icon found, cache it as null. _script_icon_cache[p_script] = Ref<Texture>(); return nullptr; |