From f3325036be4623b6c1e5a0babdb2c7e3cb643baa Mon Sep 17 00:00:00 2001 From: nitsuja Date: Sun, 11 Dec 2011 21:54:50 -0800 Subject: [PATCH] fixed hotkeys getting ignored after tab is pressed --- Source/Core/DolphinWX/Src/Frame.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/DolphinWX/Src/Frame.cpp b/Source/Core/DolphinWX/Src/Frame.cpp index 261d3d6d6d..4dc7928375 100644 --- a/Source/Core/DolphinWX/Src/Frame.cpp +++ b/Source/Core/DolphinWX/Src/Frame.cpp @@ -116,7 +116,7 @@ CPanel::CPanel( wxWindow *parent, wxWindowID id ) - : wxPanel(parent, id) + : wxPanel(parent, id, wxDefaultPosition, wxDefaultSize, 0) // disables wxTAB_TRAVERSAL because it was breaking hotkeys { }