diff --git a/Source/OpenTK/Platform/Windows/WinGLNative.cs b/Source/OpenTK/Platform/Windows/WinGLNative.cs index 4110b6eb..fe87ad60 100644 --- a/Source/OpenTK/Platform/Windows/WinGLNative.cs +++ b/Source/OpenTK/Platform/Windows/WinGLNative.cs @@ -546,6 +546,7 @@ namespace OpenTK.Platform.Windows wc.WndProc = WindowProcedureDelegate; wc.ClassName = ClassName; wc.Icon = Icon != null ? Icon.Handle : IntPtr.Zero; + wc.Cursor = Functions.LoadCursor(CursorName.Arrow); //wc.Background = Functions.GetStockObject(5); ushort atom = Functions.RegisterClassEx(ref wc);