riched20: Send WM_CHAR notifications.

This commit is contained in:
Huw Davies 2013-02-28 13:52:55 +00:00 committed by Alexandre Julliard
parent 5ed0ddd93c
commit 7a59014fa2
1 changed files with 3 additions and 0 deletions

View File

@ -4050,6 +4050,9 @@ LRESULT ME_HandleMessage(ME_TextEditor *editor, UINT msg, WPARAM wParam,
return 0;
goto do_default;
case WM_CHAR:
if ((editor->nEventMask & ENM_KEYEVENTS) &&
!ME_FilterEvent(editor, msg, &wParam, &lParam))
return 0;
return ME_Char(editor, wParam, lParam, unicode);
case WM_UNICHAR:
if (unicode)