Fixing keyboard input in imgui.

This commit is contained in:
Ben Vanik
2015-02-21 11:47:43 -08:00
parent f013fde7b6
commit 0f1e870d99
4 changed files with 39 additions and 2 deletions

View File

@@ -356,6 +356,9 @@ bool Win32Control::HandleKeyboard(UINT message, WPARAM wParam, LPARAM lParam) {
case WM_KEYUP:
OnKeyUp(e);
break;
case WM_CHAR:
OnKeyChar(e);
break;
}
return e.is_handled();
}