From 1bb542b2d891036ca5e9a80c2ce64621bb9318be Mon Sep 17 00:00:00 2001 From: simon Date: Tue, 23 Mar 1999 17:14:00 +0000 Subject: [PATCH] Change default mouse pointer to an I-beam git-svn-id: svn://svn.tartarus.org/sgt/putty@125 cda61777-01e9-0310-a592-d414129be87e --- window.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/window.c b/window.c index 85754b6c..0d2ddb66 100644 --- a/window.c +++ b/window.c @@ -163,7 +163,7 @@ int WINAPI WinMain(HINSTANCE inst, HINSTANCE prev, LPSTR cmdline, int show) { wndclass.hInstance = inst; wndclass.hIcon = LoadIcon (inst, MAKEINTRESOURCE(IDI_MAINICON)); - wndclass.hCursor = LoadCursor (NULL, IDC_ARROW); + wndclass.hCursor = LoadCursor (NULL, IDC_IBEAM); wndclass.hbrBackground = GetStockObject (BLACK_BRUSH); wndclass.lpszMenuName = NULL; wndclass.lpszClassName = appname; -- 2.11.0