mirror of
https://github.com/reactos/wine.git
synced 2025-02-07 20:57:39 +00:00
Corrected the determination of capturing inside EDIT_WM_MouseMove
function.
This commit is contained in:
parent
247246ede7
commit
108390a3b4
@ -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;
|
||||
|
||||
/*
|
||||
|
Loading…
x
Reference in New Issue
Block a user