Removed redundant printout for "OnMouseMove called without moving the mouse"

This fixes #416.
The problem with this printout (as explained in the issue) is that on
Windows (at least for specific devices/OS) GetMouseMovePointsEx can
return duplicate points, so it’s either adding a check in the Windows
layer or remove the printout. Adding a check in the Windows layer looks
redundant though, as this is already checked in NativeWindowBase, so
removing the printout looks preferable.
This commit is contained in:
Tzach Shabtay 2016-12-11 18:11:56 -05:00
parent 1581ac7b8a
commit 51e2b3915c

View file

@ -269,7 +269,6 @@ namespace OpenTK.Platform
if (e.XDelta == 0 && e.YDelta == 0)
{
Debug.WriteLine("OnMouseMove called without moving the mouse");
return;
}