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>
This commit is contained in:
parent
9d7d68747b
commit
a41c73d43e
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in New Issue