[Linux] Fixed CursorVisible=false behavior

This commit is contained in:
thefiddler 2014-07-18 09:22:12 +02:00
parent a30ec9003b
commit b23d06eb46

View 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);