UI: Remove vertical lines in game list again

With the icon offset fixed, it's nicer to just match the old behavior of not having vertical lines
This commit is contained in:
Crementif 2025-07-20 13:06:25 +02:00
parent 55fde35fa1
commit b9a4c91f04

View File

@ -444,14 +444,14 @@ long wxGameList::GetStyleFlags(Style style) const
switch (style)
{
case Style::kList:
return (wxLC_SINGLE_SEL | wxLC_REPORT | wxLC_VRULES);
return (wxLC_SINGLE_SEL | wxLC_REPORT);
case Style::kIcons:
return (wxLC_SINGLE_SEL | wxLC_ICON);
case Style::kSmallIcons:
return (wxLC_SINGLE_SEL | wxLC_ICON);
default:
wxASSERT(false);
return (wxLC_SINGLE_SEL | wxLC_REPORT | wxLC_VRULES);
return (wxLC_SINGLE_SEL | wxLC_REPORT);
}
}