393 {
395 if ( focused && focused.GetName() == "server_browser_list_entry_root" )
396 {
397 Widget sibling = focused.GetParent().GetChildren();
398 if ( focused == sibling )
399 return;
400
401 while ( sibling )
402 {
403 if ( sibling && sibling.GetSibling() == focused )
404 {
406 }
407 else
408 {
409 sibling = sibling.GetSibling();
410 }
411 }
412 }
413 }