Commit e55b9438 authored by Juan Lang's avatar Juan Lang Committed by Alexandre Julliard

Send EM_SETMODIFY after saving.

parent 4120647a
......@@ -162,6 +162,8 @@ static VOID DoSaveFile(VOID)
if (!WriteFile(hFile, pTemp, size, &dwNumWrite, NULL))
ShowLastError();
else
SendMessage(Globals.hEdit, EM_SETMODIFY, FALSE, 0);
CloseHandle(hFile);
HeapFree(GetProcessHeap(), 0, pTemp);
......
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