Sending EN_UPDATE notification in the EDIT_WM_SetText - the comment
already says, that the message is sent, but it is not...
This commit is contained in:
parent
1c2fa97e1b
commit
83d6efb761
controls
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue