Commit 83d6efb7 authored by Rizsanyi Zsolt's avatar Rizsanyi Zsolt Committed by Alexandre Julliard

Sending EN_UPDATE notification in the EDIT_WM_SetText - the comment

already says, that the message is sent, but it is not...
parent 1c2fa97e
......@@ -4727,7 +4727,10 @@ static void EDIT_WM_SetText(HWND hwnd, EDITSTATE *es, LPARAM lParam, BOOL unicod
* if it is multiline, or it is part of combobox
*/
if( !((es->style & ES_MULTILINE) || es->hwndListBox))
{
EDIT_NOTIFY_PARENT(hwnd, es, EN_CHANGE, "EN_CHANGE");
EDIT_NOTIFY_PARENT(hwnd, es, EN_UPDATE, "EN_UPDATE");
}
EDIT_EM_ScrollCaret(hwnd, es);
}
......
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