Commit 6c2026a3 authored by Dylan Smith's avatar Dylan Smith Committed by Alexandre Julliard

richedit: Show caret after pasting or streaming in text.

There was a missing call to ShowCaret after the caret was created.
parent eaf7beca
...@@ -1148,7 +1148,9 @@ static LRESULT ME_StreamIn(ME_TextEditor *editor, DWORD format, EDITSTREAM *stre ...@@ -1148,7 +1148,9 @@ static LRESULT ME_StreamIn(ME_TextEditor *editor, DWORD format, EDITSTREAM *stre
if (!(format & SFF_SELECTION)) { if (!(format & SFF_SELECTION)) {
ME_ClearTempStyle(editor); ME_ClearTempStyle(editor);
} }
HideCaret(editor->hWnd);
ME_MoveCaret(editor); ME_MoveCaret(editor);
ShowCaret(editor->hWnd);
ME_SendSelChange(editor); ME_SendSelChange(editor);
ME_SendRequestResize(editor, FALSE); ME_SendRequestResize(editor, FALSE);
......
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