richedit: Show caret after pasting or streaming in text.
There was a missing call to ShowCaret after the caret was created.
This commit is contained in:
parent
eaf7becabd
commit
6c2026a348
|
@ -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);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue