Revert as_sortable_control() change in SplitContainer
This commit is contained in:
parent
281fe39929
commit
eb570463a2
1 changed files with 2 additions and 2 deletions
|
@ -126,8 +126,8 @@ Control *SplitContainer::get_containable_child(int p_idx) const {
|
|||
int idx = 0;
|
||||
|
||||
for (int i = 0; i < get_child_count(false); i++) {
|
||||
Control *c = as_sortable_control(get_child(i, false));
|
||||
if (!c) {
|
||||
Control *c = Object::cast_to<Control>(get_child(i, false));
|
||||
if (!c || !c->is_visible() || c->is_set_as_top_level()) {
|
||||
continue;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue