383 {
385 if ( focused && focused.GetName() == "server_browser_list_entry_root" )
386 {
387 Widget sibling = focused.GetParent().GetChildren();
388 if ( focused == sibling )
389 return;
390
391 while ( sibling )
392 {
393 if ( sibling && sibling.GetSibling() == focused )
394 {
396 }
397 else
398 {
399 sibling = sibling.GetSibling();
400 }
401 }
402 }
403 }