GameList: Fix hidden last column (#632)

This commit is contained in:
bslhq 2023-01-29 20:06:20 +08:00 committed by GitHub
parent 8651c4bae7
commit ca79a6aa0d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -871,6 +871,9 @@ void wxGameList::OnColumnResize(wxListEvent& event)
{ {
event.Skip(); event.Skip();
if(m_style != Style::kList)
return;
const int column = event.GetColumn(); const int column = event.GetColumn();
const int width = GetColumnWidth(column); const int width = GetColumnWidth(column);