Make invisible SplitContainer
nodes correctly calculate the minimal size of its children
(cherry picked from commit e4d56e4c62
)
This commit is contained in:
parent
ab1162e918
commit
d453b59cba
1 changed files with 1 additions and 1 deletions
|
@ -38,7 +38,7 @@ Control *SplitContainer::_getch(int p_idx) 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 || !c->is_visible_in_tree()) {
|
if (!c || !c->is_visible()) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
if (c->is_set_as_toplevel()) {
|
if (c->is_set_as_toplevel()) {
|
||||||
|
|
Loading…
Reference in a new issue