From 859216b94b00ba6a614b720e47edd24aa5309791 Mon Sep 17 00:00:00 2001 From: the_fiddler Date: Fri, 26 Nov 2010 10:59:08 +0000 Subject: [PATCH] Disabled event suppression after cursor movements. --- Source/OpenTK/Platform/MacOS/HIDInput.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/Source/OpenTK/Platform/MacOS/HIDInput.cs b/Source/OpenTK/Platform/MacOS/HIDInput.cs index af160203..6a123d28 100755 --- a/Source/OpenTK/Platform/MacOS/HIDInput.cs +++ b/Source/OpenTK/Platform/MacOS/HIDInput.cs @@ -221,6 +221,7 @@ namespace OpenTK.Platform.MacOS void IMouseDriver2.SetPosition(double x, double y) { + CG.SetLocalEventsSuppressionInterval(0.0); CG.WarpMouseCursorPosition(new Carbon.HIPoint(x, y)); }