From ca79a6aa0d65f3b27cec0018b896ec903b78f64f Mon Sep 17 00:00:00 2001 From: bslhq Date: Sun, 29 Jan 2023 20:06:20 +0800 Subject: [PATCH] GameList: Fix hidden last column (#632) --- src/gui/components/wxGameList.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/gui/components/wxGameList.cpp b/src/gui/components/wxGameList.cpp index 59483057..6e761358 100644 --- a/src/gui/components/wxGameList.cpp +++ b/src/gui/components/wxGameList.cpp @@ -871,6 +871,9 @@ void wxGameList::OnColumnResize(wxListEvent& event) { event.Skip(); + if(m_style != Style::kList) + return; + const int column = event.GetColumn(); const int width = GetColumnWidth(column);