Revert as_sortable_control() change in SplitContainer

This commit is contained in:
kobewi 2024-05-08 13:36:49 +02:00
parent 281fe39929
commit eb570463a2

View file

@ -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;
}