efl_ui_focus_manager_calc: only call next when the node is unexpected

ref T6793
This commit is contained in:
Marcel Hollerbach 2018-04-12 14:27:22 +02:00
parent 4214311a76
commit 32e17ecdc2
1 changed files with 1 additions and 2 deletions

View File

@ -1014,11 +1014,10 @@ static inline Node*
_request_subchild_except(Node *n, Node *except)
{
n = _request_subchild(n);
do
while (n == except)
{
n = _next(n);
}
while (n == except);
return n;
}