Commit 40ed511c authored by Gerard Patel's avatar Gerard Patel Committed by Alexandre Julliard

Cancel pending notifications when EM_SETMODIFY is called.

parent 124b6190
......@@ -445,7 +445,7 @@ LRESULT WINAPI EditWndProc( HWND hwnd, UINT msg,
if (wParam)
es->flags |= EF_MODIFIED;
else
es->flags &= ~EF_MODIFIED;
es->flags &= ~(EF_MODIFIED | EF_UPDATE); /* reset pending updates */
break;
case EM_GETLINECOUNT16:
......
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