Merge pull request #72240 from JohanAR/graphnode_min_size

GraphNode ignore non-visible children for minimum size.
This commit is contained in:
Rémi Verschelde 2023-04-05 12:03:10 +02:00
commit 80629f9d11
No known key found for this signature in database
GPG Key ID: C3336907360768E1
1 changed files with 1 additions and 1 deletions

View File

@ -664,7 +664,7 @@ Size2 GraphNode::get_minimum_size() const {
for (int i = 0; i < get_child_count(); i++) {
Control *c = Object::cast_to<Control>(get_child(i));
if (!c) {
if (!c || !c->is_visible()) {
continue;
}
if (c->is_set_as_top_level()) {