summaryrefslogtreecommitdiffstats
path: root/editor/editor_data.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'editor/editor_data.cpp')
-rw-r--r--editor/editor_data.cpp9
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;