Commit cba72383 authored by Matt Finnicum's avatar Matt Finnicum Committed by Alexandre Julliard

riched20: Swap two lines that were in wrong order / caused notification not to be sent.

parent bfa59673
......@@ -2303,8 +2303,8 @@ LRESULT WINAPI RichEditANSIWndProc(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lP
case WM_MOUSEMOVE:
if (GetCapture() == hWnd)
ME_MouseMove(editor, (short)LOWORD(lParam), (short)HIWORD(lParam));
break;
ME_LinkNotify(editor,msg,wParam,lParam);
break;
case WM_LBUTTONUP:
if (GetCapture() == hWnd)
ReleaseCapture();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment