From 16fcf56bd3b3b1b07a0ae9d42cdd746fc5b6ae56 Mon Sep 17 00:00:00 2001 From: Simon Tatham Date: Tue, 23 Mar 1999 17:14:00 +0000 Subject: [PATCH] Change default mouse pointer to an I-beam [originally from svn r125] --- 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;