Commit 108390a3 authored by Kouji Sasaki's avatar Kouji Sasaki Committed by Alexandre Julliard

Corrected the determination of capturing inside EDIT_WM_MouseMove

function.
parent 247246ed
......@@ -4518,7 +4518,10 @@ static LRESULT EDIT_WM_MouseMove(EDITSTATE *es, INT x, INT y)
BOOL after_wrap;
INT prex, prey;
if (GetCapture() != es->hwndSelf)
/* If the mouse has been captured by process other than the edit control itself,
* the windows edit controls will not select the strings with mouse move.
*/
if (!es->bCaptureState || GetCapture() != es->hwndSelf)
return 0;
/*
......
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