Merge pull request #56347 from NNesh/fix/graph_editor_out_of_range_alignment

Fixed an invalidation of sets and out of range for an alignment
This commit is contained in:
Rémi Verschelde 2022-01-04 00:37:43 +01:00 committed by GitHub
commit 8501233401
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -1692,7 +1692,7 @@ int GraphEdit::_set_operations(SET_OPERATIONS p_operation, Set<StringName> &r_u,
r_u.insert(E->get());
}
}
return r_v.size();
return r_u.size();
} break;
default:
break;
@ -1787,8 +1787,8 @@ void GraphEdit::_horizontal_alignment(Dictionary &r_root, Dictionary &r_align, c
}
}
int start = up.size() / 2;
int end = up.size() % 2 ? start : start + 1;
int start = (up.size() - 1) / 2;
int end = (up.size() - 1) % 2 ? start + 1 : start;
for (int p = start; p <= end; p++) {
StringName Align = r_align[current_node];
if (Align == current_node && r < up[p].first) {