From b9a4c91f04adc16dd1865d1a371d8e7ff110c54c Mon Sep 17 00:00:00 2001 From: Crementif <26669564+Crementif@users.noreply.github.com> Date: Sun, 20 Jul 2025 13:06:25 +0200 Subject: [PATCH] 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 --- src/gui/wxgui/components/wxGameList.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/gui/wxgui/components/wxGameList.cpp b/src/gui/wxgui/components/wxGameList.cpp index 748e780a..361e62d0 100644 --- a/src/gui/wxgui/components/wxGameList.cpp +++ b/src/gui/wxgui/components/wxGameList.cpp @@ -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); } }