From: simon Date: Tue, 23 Mar 1999 17:14:00 +0000 (+0000) Subject: Change default mouse pointer to an I-beam X-Git-Url: https://git.distorted.org.uk/u/mdw/putty/commitdiff_plain/1bb542b2d891036ca5e9a80c2ce64621bb9318be Change default mouse pointer to an I-beam git-svn-id: svn://svn.tartarus.org/sgt/putty@125 cda61777-01e9-0310-a592-d414129be87e --- 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;