From a41c73d43e39839b2ec38c7801c763bedd4e3d65 Mon Sep 17 00:00:00 2001 From: Zebediah Figura Date: Fri, 19 Apr 2019 23:16:53 -0500 Subject: [PATCH] regedit: Use an I-beam cursor in the hex edit dialog. Signed-off-by: Zebediah Figura Signed-off-by: Alexandre Julliard --- programs/regedit/hexedit.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/programs/regedit/hexedit.c b/programs/regedit/hexedit.c index 951779bf242..7322a86e1f7 100644 --- a/programs/regedit/hexedit.c +++ b/programs/regedit/hexedit.c @@ -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;