From 57fe7a53f1c842c3bfb222d2a82666dc7315f01f Mon Sep 17 00:00:00 2001 From: Crementif <26669564+Crementif@users.noreply.github.com> Date: Tue, 29 Jul 2025 19:26:47 +0200 Subject: [PATCH] UI: Disable alpha for game list icons --- src/gui/wxgui/components/wxGameList.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/gui/wxgui/components/wxGameList.cpp b/src/gui/wxgui/components/wxGameList.cpp index 9751c9c4..f807042c 100644 --- a/src/gui/wxgui/components/wxGameList.cpp +++ b/src/gui/wxgui/components/wxGameList.cpp @@ -143,7 +143,6 @@ wxGameList::wxGameList(wxWindow* parent, wxWindowID id) char transparent_bitmap[kIconWidth * kIconWidth * 4] = {}; memset((void*)transparent_bitmap, wxSystemSettings::GetAppearance().IsDark() ? 0xFF : 0x00, sizeof(transparent_bitmap)); wxBitmap blank(transparent_bitmap, kIconWidth, kIconWidth); - blank.UseAlpha(true); m_image_list_data = {}; m_image_list_data.emplace_back(wxBitmapBundle::FromBitmap(blank));