Commit 25209c16 authored by Santino Mazza's avatar Santino Mazza Committed by Alexandre Julliard

riched20: Ensure that cursor is visible when selecting text.

parent ee131e9e
......@@ -2142,6 +2142,7 @@ int set_selection( ME_TextEditor *editor, int to, int from )
if (!editor->bHideSelection) ME_InvalidateSelection( editor );
end = set_selection_cursors( editor, to, from );
editor_ensure_visible( editor, &editor->pCursors[0] );
if (!editor->bHideSelection) ME_InvalidateSelection( editor );
update_caret( editor );
ME_SendSelChange( editor );
......
......@@ -5032,7 +5032,6 @@ static void check_EM_SETSEL_multiline(HWND hwnd)
oldY = get_scroll_pos_y(hwnd);
SendMessageA(hwnd, EM_SETSEL, 59, 59);
curY = get_scroll_pos_y(hwnd);
todo_wine
ok(oldY < curY, "oldY %d >= curY %d\n", oldY, curY);
}
......
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