[Linux] Fixed CursorVisible=false behavior
authorthefiddler <stapostol@gmail.com>
Fri, 18 Jul 2014 07:22:12 +0000 (09:22 +0200)
committerthefiddler <stapostol@gmail.com>
Fri, 18 Jul 2014 07:22:12 +0000 (09:22 +0200)
Source/OpenTK/Platform/Linux/LinuxNativeWindow.cs

index 8391f53..f3aebbe 100644 (file)
@@ -283,7 +283,7 @@ namespace OpenTK.Platform.Linux
                 if (!CursorVisible)
                 {
                     x = MathHelper.Clamp(mouse.X, Bounds.Left, Bounds.Right - 1);
-                    y = MathHelper.Clamp(mouse.X, Bounds.Top, Bounds.Bottom - 1);
+                    y = MathHelper.Clamp(mouse.Y, Bounds.Top, Bounds.Bottom - 1);
                     if (x != mouse.X || y != mouse.Y)
                     {
                         Mouse.SetPosition(x, y);