From d6b53af115818878b0520f8d91e255351a4f48b8 Mon Sep 17 00:00:00 2001 From: Rachel Bryk Date: Thu, 10 Jan 2013 14:29:48 -0500 Subject: [PATCH] Automatically set focus on game list window. Fixes issue 5880. --- Source/Core/DolphinWX/Src/GameListCtrl.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/Source/Core/DolphinWX/Src/GameListCtrl.cpp b/Source/Core/DolphinWX/Src/GameListCtrl.cpp index 6ee860c229..2e31843ef9 100644 --- a/Source/Core/DolphinWX/Src/GameListCtrl.cpp +++ b/Source/Core/DolphinWX/Src/GameListCtrl.cpp @@ -365,6 +365,7 @@ void CGameListCtrl::Update() AutomaticColumnWidth(); ScrollLines(scrollPos); + SetFocus(); } wxString NiceSizeFormat(s64 _size)