You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-20 14:45:44 +00:00
GraphNode ignore non-visible children for minimum size.
This commit is contained in:
@@ -664,7 +664,7 @@ Size2 GraphNode::get_minimum_size() const {
|
|||||||
|
|
||||||
for (int i = 0; i < get_child_count(); i++) {
|
for (int i = 0; i < get_child_count(); i++) {
|
||||||
Control *c = Object::cast_to<Control>(get_child(i));
|
Control *c = Object::cast_to<Control>(get_child(i));
|
||||||
if (!c) {
|
if (!c || !c->is_visible()) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
if (c->is_set_as_top_level()) {
|
if (c->is_set_as_top_level()) {
|
||||||
|
|||||||
Reference in New Issue
Block a user