Commit a41c73d4 authored by Zebediah Figura's avatar Zebediah Figura Committed by Alexandre Julliard

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

parent 9d7d6874
......@@ -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;
......
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