]> asedeno.scripts.mit.edu Git - PuTTY.git/commitdiff
Change default mouse pointer to an I-beam
authorSimon Tatham <anakin@pobox.com>
Tue, 23 Mar 1999 17:14:00 +0000 (17:14 +0000)
committerSimon Tatham <anakin@pobox.com>
Tue, 23 Mar 1999 17:14:00 +0000 (17:14 +0000)
[originally from svn r125]

window.c

index 85754b6c73442877c74d148c57a6e3cb49d37748..0d2ddb660b57ac34bcd3b4bbeb12ca31f7e18548 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;