From 6c571b30d20521f1af73adbcc8696e463bb7ac3c Mon Sep 17 00:00:00 2001 From: raven02 Date: Sun, 14 Dec 2014 16:21:38 +0800 Subject: [PATCH] icon sizing fix --- rpcs3/Gui/GameViewer.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/rpcs3/Gui/GameViewer.h b/rpcs3/Gui/GameViewer.h index a4e74de127..41399dbe9b 100644 --- a/rpcs3/Gui/GameViewer.h +++ b/rpcs3/Gui/GameViewer.h @@ -84,7 +84,7 @@ public: void Init() { - m_img_list = new wxImageList(56, 31); + m_img_list = new wxImageList(58, 32); m_columns.clear(); m_columns.emplace_back(m_columns.size(), 75, "Icon"); @@ -130,11 +130,11 @@ public: // load icons for (const auto& path : m_col_icon->data) { - wxImage game_icon(56, 31); + wxImage game_icon(58, 32); { wxLogNull logNo; // temporary disable wx warnings ("iCCP: known incorrect sRGB profile" spamming) if (game_icon.LoadFile(fmt::FromUTF8(path), wxBITMAP_TYPE_PNG)) - game_icon.Rescale(56, 31); + game_icon.Rescale(58, 32); } m_icon_indexes.push_back(m_img_list->Add(game_icon));