From 9b67a38f1a514c9f20d0c99ad2b721abd2c37e1a Mon Sep 17 00:00:00 2001 From: Dylan Smith Date: Wed, 25 Jun 2008 11:51:17 -0400 Subject: [PATCH] richedit: Make cursor visible when selecting via mouse above/below editor. --- dlls/riched20/caret.c | 1 + 1 file changed, 1 insertion(+) diff --git a/dlls/riched20/caret.c b/dlls/riched20/caret.c index 5ed2329b61b..dcaab0ce00a 100644 --- a/dlls/riched20/caret.c +++ b/dlls/riched20/caret.c @@ -966,6 +966,7 @@ void ME_MouseMove(ME_TextEditor *editor, int x, int y) ME_InvalidateSelection(editor); ShowCaret(editor->hWnd); ME_SendSelChange(editor); + SendMessageW(editor->hWnd, EM_SCROLLCARET, 0, 0); } static ME_DisplayItem *ME_FindRunInRow(ME_TextEditor *editor, ME_DisplayItem *pRow,