I am trying to highlight a row in my table but it is displayed in a light grey:
SAssignNew(PlayerListWidget, SListView<TSharedPtr<FPlayerRow>>)
:
PlayerListWidget->SetItemSelection(PlayerRows[Idx], true, ESelectInfo::Type::OnMouseClick);
PlayerListWidget->SetItemHighlighted(PlayerRows[Idx], true);
SetItemHighlighted gives me the light grey color too. I am trying to get the yellow background color that appears when pressing with the mouse.
Any help is appreciated.