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

Zebediah Figura z.figura12 at gmail.com
Fri Apr 19 23:16:53 CDT 2019


Signed-off-by: Zebediah Figura <z.figura12 at gmail.com>
---
 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 951779bf24..7322a86e1f 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;
 
-- 
2.21.0




More information about the wine-devel mailing list