From f659869a45fa4a17713c91d7e2d7c29cc0bbecea Mon Sep 17 00:00:00 2001 From: kobewi Date: Thu, 30 Jun 2022 16:22:40 +0200 Subject: [PATCH] Fix find_next_valid_focus() freeze (cherry picked from commit d9ede52ded9eb7ef6ccb7c704f1d9ccbe7f23861) --- scene/gui/control.cpp | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/scene/gui/control.cpp b/scene/gui/control.cpp index 07cb77ae15a..21ff052a3f3 100644 --- a/scene/gui/control.cpp +++ b/scene/gui/control.cpp @@ -1825,7 +1825,7 @@ void Control::set_focus_mode(FocusMode p_focus_mode) { static Control *_next_control(Control *p_from) { if (p_from->is_set_as_toplevel()) { - return nullptr; // can't go above + return nullptr; // Can't go above. } Control *parent = Object::cast_to(p_from->get_parent()); @@ -1845,7 +1845,7 @@ static Control *_next_control(Control *p_from) { return c; } - //no next in parent, try the same in parent + // No next in parent, try the same in parent. return _next_control(parent); } @@ -1869,7 +1869,7 @@ Control *Control::find_next_valid_focus() const { } } - // find next child + // Find next child. Control *next_child = nullptr; @@ -1885,7 +1885,7 @@ Control *Control::find_next_valid_focus() const { if (!next_child) { next_child = _next_control(from); - if (!next_child) { //nothing else.. go up and find either window or subwindow + if (!next_child) { // Nothing else. Go up and find either window or subwindow. next_child = const_cast(this); while (next_child && !next_child->is_set_as_toplevel()) { next_child = cast_to(next_child->get_parent()); @@ -1903,7 +1903,7 @@ Control *Control::find_next_valid_focus() const { } } - if (next_child == this) { // no next control-> + if (next_child == from) { // No next control. return (get_focus_mode() == FOCUS_ALL) ? next_child : nullptr; } if (next_child) { @@ -1935,7 +1935,7 @@ static Control *_prev_control(Control *p_from) { return p_from; } - //no prev in parent, try the same in parent + // No prev in parent, try the same in parent. return _prev_control(child); } @@ -1959,12 +1959,12 @@ Control *Control::find_prev_valid_focus() const { } } - // find prev child + // Find prev child. Control *prev_child = nullptr; if (from->is_set_as_toplevel() || !Object::cast_to(from->get_parent())) { - //find last of the children + // Find last of the children. prev_child = _prev_control(from); @@ -1987,7 +1987,7 @@ Control *Control::find_prev_valid_focus() const { } } - if (prev_child == this) { // no prev control-> + if (prev_child == from) { // No prev control. return (get_focus_mode() == FOCUS_ALL) ? prev_child : nullptr; }