regedit: Use an I-beam cursor in the hex edit dialog.

Signed-off-by: Zebediah Figura <z.figura12@gmail.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
stable
Zebediah Figura 2019-04-19 23:16:53 -05:00 committed by Alexandre Julliard
parent 9d7d68747b
commit a41c73d43e
1 changed files with 1 additions and 1 deletions

View File

@ -643,7 +643,7 @@ void HexEdit_Register(void)
wndClass.lpfnWndProc = HexEdit_WindowProc;
wndClass.cbClsExtra = 0;
wndClass.cbWndExtra = sizeof(HEXEDIT_INFO *);
wndClass.hCursor = NULL;
wndClass.hCursor = LoadCursorW(0, (const WCHAR *)IDC_IBEAM);
wndClass.hbrBackground = (HBRUSH)(COLOR_WINDOW + 1);
wndClass.lpszClassName = szHexEditClass;