diff --git a/Source/OpenTK/Platform/X11/X11Input.cs b/Source/OpenTK/Platform/X11/X11Input.cs index 1c3a80fb..53329ce9 100644 --- a/Source/OpenTK/Platform/X11/X11Input.cs +++ b/Source/OpenTK/Platform/X11/X11Input.cs @@ -151,7 +151,7 @@ namespace OpenTK.Platform.X11 //Debug.Print("Keyboard press"); keyboardDriver.ProcessKeyboardEvent(ref e.KeyEvent); break; - /* See MouseDriver.Poll() instead. + // See MouseDriver.Poll() instead. case XEventName.ButtonPress: case XEventName.ButtonRelease: //Debug.Print("Button"); @@ -162,7 +162,6 @@ namespace OpenTK.Platform.X11 //Debug.Print("Mouse move"); mouseDriver.ProcessMotion(ref e.MotionEvent); break; - */ } } @@ -204,7 +203,7 @@ namespace OpenTK.Platform.X11 /// public void Poll() { - mouseDriver.Poll(); + //mouseDriver.Poll(); }