diff options
| author | JosJuice <josjuice@gmail.com> | 2015-12-19 11:55:23 +0100 |
|---|---|---|
| committer | JosJuice <josjuice@gmail.com> | 2016-01-05 19:19:36 +0100 |
| commit | fd2d50535fad32facc95f2e8a35bb2f10742e83b (patch) | |
| tree | afacc7fa994a5f293594f77e59af4128b8fbbc66 /Source | |
| parent | 81466d7fa3bd3fdbb4f00039342d878c4dc8aad7 (diff) | |
DolphinWX: Minor adjustments to the widths of images
Diffstat (limited to 'Source')
| -rw-r--r-- | Source/Core/DolphinWX/GameListCtrl.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/Core/DolphinWX/GameListCtrl.cpp b/Source/Core/DolphinWX/GameListCtrl.cpp index 0f80f8f31f..6f9d297d1a 100644 --- a/Source/Core/DolphinWX/GameListCtrl.cpp +++ b/Source/Core/DolphinWX/GameListCtrl.cpp @@ -273,15 +273,15 @@ void CGameListCtrl::Update() #endif // set initial sizes for columns - SetColumnWidth(COLUMN_DUMMY,0); - SetColumnWidth(COLUMN_PLATFORM, SConfig::GetInstance().m_showSystemColumn ? 35 + platform_padding : 0); + SetColumnWidth(COLUMN_DUMMY, 0); + SetColumnWidth(COLUMN_PLATFORM, SConfig::GetInstance().m_showSystemColumn ? 32 + platform_padding : 0); SetColumnWidth(COLUMN_BANNER, SConfig::GetInstance().m_showBannerColumn ? 96 + platform_padding : 0); SetColumnWidth(COLUMN_TITLE, 175 + platform_padding); SetColumnWidth(COLUMN_MAKER, SConfig::GetInstance().m_showMakerColumn ? 150 + platform_padding : 0); SetColumnWidth(COLUMN_FILENAME, SConfig::GetInstance().m_showFileNameColumn ? 100 + platform_padding : 0); SetColumnWidth(COLUMN_ID, SConfig::GetInstance().m_showIDColumn ? 75 + platform_padding : 0); SetColumnWidth(COLUMN_COUNTRY, SConfig::GetInstance().m_showRegionColumn ? 32 + platform_padding : 0); - SetColumnWidth(COLUMN_EMULATION_STATE, SConfig::GetInstance().m_showStateColumn ? 50 + platform_padding : 0); + SetColumnWidth(COLUMN_EMULATION_STATE, SConfig::GetInstance().m_showStateColumn ? 48 + platform_padding : 0); // add all items for (int i = 0; i < (int)m_ISOFiles.size(); i++) |
