Skip to content

Commit

Permalink
Merge pull request #84404 from MewPurPur/engine-config-old-icon-conve…
Browse files Browse the repository at this point in the history
…ntion

Fix engine configuration icons using old convention
  • Loading branch information
YuriSizov committed Nov 3, 2023
2 parents f1426a5 + e039968 commit 5ee9831
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion editor/editor_build_profile.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 5ee9831

Please sign in to comment.