summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMewPurPur <mew.pur.pur@gmail.com>2023-11-03 12:50:12 +0200
committerMewPurPur <mew.pur.pur@gmail.com>2023-11-03 12:50:12 +0200
commite0399689f4dd1d28543472f9c23116ec3528d93b (patch)
tree56a091891cc305699761eecf7c3769f2c6c8b430
parente3e2528ba7f6e85ac167d687dd6312b35f558591 (diff)
downloadredot-engine-e0399689f4dd1d28543472f9c23116ec3528d93b.tar.gz
Fix engine configuration icons using old convention
-rw-r--r--editor/editor_build_profile.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/editor_build_profile.cpp b/editor/editor_build_profile.cpp
index bca30b2d2d..fe8a7a2167 100644
--- a/editor/editor_build_profile.cpp
+++ b/editor/editor_build_profile.cpp
@@ -596,7 +596,7 @@ void EditorBuildProfileManager::_action_confirm() {
void EditorBuildProfileManager::_fill_classes_from(TreeItem *p_parent, const String &p_class, const String &p_selected) {
TreeItem *class_item = class_list->create_item(p_parent);
class_item->set_cell_mode(0, TreeItem::CELL_MODE_CHECK);
- class_item->set_icon(0, EditorNode::get_singleton()->get_class_icon(p_class, "Node"));
+ class_item->set_icon(0, EditorNode::get_singleton()->get_class_icon(p_class));
String text = p_class;
bool disabled = edited->is_class_disabled(p_class);