mirror of
https://github.com/cemu-project/Cemu.git
synced 2026-07-09 17:14:47 -06:00
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:
parent
55fde35fa1
commit
b9a4c91f04
@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user