diff options
author | MewPurPur <mew.pur.pur@abv.bg> | 2023-08-01 20:04:28 +0300 |
---|---|---|
committer | MewPurPur <mew.pur.pur@gmail.com> | 2023-08-31 12:59:18 +0300 |
commit | 398ca4e71a78c4b58a90bdec540989367d80fa67 (patch) | |
tree | 3ab4a42f181f4fa0f8a749bb330f82003cf532d9 /editor/editor_help_search.cpp | |
parent | 6758a7f8c07d1f4c8ec4f052ded6d26402967ebe (diff) | |
download | redot-engine-398ca4e71a78c4b58a90bdec540989367d80fa67.tar.gz |
Use the gray color for all abstract classes
Diffstat (limited to 'editor/editor_help_search.cpp')
-rw-r--r-- | editor/editor_help_search.cpp | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/editor/editor_help_search.cpp b/editor/editor_help_search.cpp index 6aa508f40e..f06a23607e 100644 --- a/editor/editor_help_search.cpp +++ b/editor/editor_help_search.cpp @@ -593,16 +593,10 @@ TreeItem *EditorHelpSearch::Runner::_create_class_hierarchy(const ClassMatch &p_ } TreeItem *EditorHelpSearch::Runner::_create_class_item(TreeItem *p_parent, const DocData::ClassDoc *p_doc, bool p_gray) { - Ref<Texture2D> icon = empty_icon; - if (ui_service->has_theme_icon(p_doc->name, SNAME("EditorIcons"))) { - icon = ui_service->get_theme_icon(p_doc->name, SNAME("EditorIcons")); - } else if (ClassDB::class_exists(p_doc->name) && ClassDB::is_parent_class(p_doc->name, "Object")) { - icon = ui_service->get_theme_icon(SNAME("Object"), SNAME("EditorIcons")); - } String tooltip = DTR(p_doc->brief_description.strip_edges()); TreeItem *item = results_tree->create_item(p_parent); - item->set_icon(0, icon); + item->set_icon(0, EditorNode::get_singleton()->get_class_icon(p_doc->name)); item->set_text(0, p_doc->name); item->set_text(1, TTR("Class")); item->set_tooltip_text(0, tooltip); @@ -706,6 +700,5 @@ EditorHelpSearch::Runner::Runner(Control *p_icon_service, Tree *p_results_tree, results_tree(p_results_tree), term((p_search_flags & SEARCH_CASE_SENSITIVE) == 0 ? p_term.strip_edges().to_lower() : p_term.strip_edges()), search_flags(p_search_flags), - empty_icon(ui_service->get_theme_icon(SNAME("ArrowRight"), SNAME("EditorIcons"))), disabled_color(ui_service->get_theme_color(SNAME("disabled_font_color"), SNAME("Editor"))) { } |