user32: Use 1 unit caret width for Edit control.
This commit is contained in:
parent
032356ec37
commit
258d953a3f
|
@ -3902,7 +3902,7 @@ static void EDIT_WM_SetFocus(EDITSTATE *es)
|
|||
ReleaseDC(es->hwndSelf, hdc);
|
||||
}
|
||||
|
||||
CreateCaret(es->hwndSelf, 0, 2, es->line_height);
|
||||
CreateCaret(es->hwndSelf, 0, 1, es->line_height);
|
||||
EDIT_SetCaretPos(es, es->selection_end,
|
||||
es->flags & EF_AFTER_WRAP);
|
||||
ShowCaret(es->hwndSelf);
|
||||
|
@ -3952,7 +3952,7 @@ static void EDIT_WM_SetFont(EDITSTATE *es, HFONT font, BOOL redraw)
|
|||
EDIT_UpdateText(es, NULL, TRUE);
|
||||
if (es->flags & EF_FOCUSED) {
|
||||
DestroyCaret();
|
||||
CreateCaret(es->hwndSelf, 0, 2, es->line_height);
|
||||
CreateCaret(es->hwndSelf, 0, 1, es->line_height);
|
||||
EDIT_SetCaretPos(es, es->selection_end,
|
||||
es->flags & EF_AFTER_WRAP);
|
||||
ShowCaret(es->hwndSelf);
|
||||
|
|
Loading…
Reference in New Issue