diff --git a/Source/Core/DolphinWX/Src/GameListCtrl.cpp b/Source/Core/DolphinWX/Src/GameListCtrl.cpp index 45370eae54..d0b8b8a9ae 100644 --- a/Source/Core/DolphinWX/Src/GameListCtrl.cpp +++ b/Source/Core/DolphinWX/Src/GameListCtrl.cpp @@ -1023,6 +1023,8 @@ void CGameListCtrl::OnCompressGCM(wxCommandEvent& WXUNUSED (event)) void CGameListCtrl::OnSize(wxSizeEvent& event) { + if (lastpos == event.GetSize()) return; + lastpos = event.GetSize(); AutomaticColumnWidth(); event.Skip(); diff --git a/Source/Core/DolphinWX/Src/GameListCtrl.h b/Source/Core/DolphinWX/Src/GameListCtrl.h index 4d81f7d0f0..a42e19958f 100644 --- a/Source/Core/DolphinWX/Src/GameListCtrl.h +++ b/Source/Core/DolphinWX/Src/GameListCtrl.h @@ -66,7 +66,7 @@ private: int last_column; int last_sort; - + wxSize lastpos; void InitBitmaps(); void InsertItemInReportView(long _Index); void SetBackgroundColor();