From 2229d4e03814c1fbd5c41c0f6aaa0acdacc39d55 Mon Sep 17 00:00:00 2001 From: John Peterson Date: Mon, 24 Nov 2008 08:13:31 +0000 Subject: [PATCH] Unblock E key. I could not use E when changing a symbol name in the debugger, this seemed to fix that. While it still does its PostMessage. git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@1284 8ced0084-cf51-0410-be5f-012b33b47a6e --- Source/Core/DolphinWX/Src/Frame.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/Source/Core/DolphinWX/Src/Frame.cpp b/Source/Core/DolphinWX/Src/Frame.cpp index f36064d5b7..aead7a10e8 100644 --- a/Source/Core/DolphinWX/Src/Frame.cpp +++ b/Source/Core/DolphinWX/Src/Frame.cpp @@ -624,6 +624,7 @@ void CFrame::OnKeyDown(wxKeyEvent& event) else if(event.GetKeyCode() == 'E') // Send this to the video plugin WndProc { PostMessage((HWND)Core::GetWindowHandle(), WM_KEYDOWN, event.GetKeyCode(), 0); + event.Skip(); } #endif else