diff --git a/dll/win32/comctl32/edit.c b/dll/win32/comctl32/edit.c index 5185605eb72..41fef87206a 100644 --- a/dll/win32/comctl32/edit.c +++ b/dll/win32/comctl32/edit.c @@ -3497,6 +3502,12 @@ static LRESULT EDIT_WM_LButtonDblClk(EDITSTATE *es) EDIT_EM_ScrollCaret(es); es->region_posx = es->region_posy = 0; SetTimer(es->hwndSelf, 0, 100, NULL); + +#ifdef __REACTOS__ + ReleaseCapture(); + es->bCaptureState = FALSE; +#endif + return 0; }