From a61d20d2eb1507b8754a9adec117bb036380b4eb Mon Sep 17 00:00:00 2001 From: thefiddler Date: Sun, 27 Apr 2014 10:56:08 +0200 Subject: [PATCH] [Mac] Stubbed INativeWindow.Cursor --- Source/OpenTK/Platform/MacOS/CocoaNativeWindow.cs | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/Source/OpenTK/Platform/MacOS/CocoaNativeWindow.cs b/Source/OpenTK/Platform/MacOS/CocoaNativeWindow.cs index 71f0ded..e507554 100644 --- a/Source/OpenTK/Platform/MacOS/CocoaNativeWindow.cs +++ b/Source/OpenTK/Platform/MacOS/CocoaNativeWindow.cs @@ -885,6 +885,17 @@ namespace OpenTK.Platform.MacOS } } + public MouseCursor Cursor + { + get + { + return MouseCursor.Default; + } + set + { + } + } + public bool CursorVisible { get { return cursorVisible; } -- 2.7.4