[WINESYNC][COMCTL32] Move caret to the end on "select all" (#7939)

CORE-19903

comctl32/edit: Scroll caret on Ctrl+A.

wine commit id e71087cd39 by Vladislav Timonin <timoninvlad@yandex.ru>
This commit is contained in:
Mohammad Amin Mollazadeh 2025-05-05 00:02:56 +03:30 committed by GitHub
parent 2aa6fc1c7f
commit 2e7cfa0400
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -3469,6 +3469,9 @@ static LRESULT EDIT_WM_KeyDown(EDITSTATE *es, INT key)
{
if (!notify_parent(es, EN_UPDATE)) break;
notify_parent(es, EN_CHANGE);
#ifdef __REACTOS__
EDIT_EM_ScrollCaret(es);
#endif
}
}
break;