riched20: Accept middle click as paste (like edit control does).

This commit is contained in:
Dan Kegel 2012-06-18 11:31:22 -07:00 committed by Alexandre Julliard
parent d0012f8fc6
commit a59e766ea7

View file

@ -3591,6 +3591,7 @@ LRESULT ME_HandleMessage(ME_TextEditor *editor, UINT msg, WPARAM wParam,
return FALSE;
}
case WM_PASTE:
case WM_MBUTTONDOWN:
ME_Paste(editor);
return 0;
case WM_CUT: