Remove some logging

This commit is contained in:
Henrik Rydgård 2023-07-16 00:20:55 +02:00
parent 04351a18f6
commit ebc0afc828

View file

@ -141,16 +141,13 @@ static void MoveFocus(ViewGroup *root, FocusDirection direction) {
return;
}
NeighborResult neigh;
neigh = root->FindNeighbor(focusedView, direction, neigh);
NeighborResult neigh = root->FindNeighbor(focusedView, direction, neigh);
if (neigh.view) {
neigh.view->SetFocus();
root->SubviewFocused(neigh.view);
PlayUISound(UISound::SELECT);
} else {
INFO_LOG(SCECTRL, "No neighbor view");
}
}