Change default mouse pointer to an I-beam
authorsimon <simon@cda61777-01e9-0310-a592-d414129be87e>
Tue, 23 Mar 1999 17:14:00 +0000 (17:14 +0000)
committersimon <simon@cda61777-01e9-0310-a592-d414129be87e>
Tue, 23 Mar 1999 17:14:00 +0000 (17:14 +0000)
git-svn-id: svn://svn.tartarus.org/sgt/putty@125 cda61777-01e9-0310-a592-d414129be87e

window.c

index 85754b6..0d2ddb6 100644 (file)
--- 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;