Note: Is the mouse move event being fired constantly?
Bug report: https://code.google.com/p/chromium/issues/detail?id=390326&thanks=390326&ts=1404171639
This is an issue with Windows on Chrome (and some other
browsers on Windows). Some programs may constantly
send a WM_MOUSEMOVE signal, causing chrome to fire mouse
move events even if the mouse pointer is not moving.
To combat this bug, we will track coordinates and only
notify when these coordinates are changed.
MouseController class to represent a Mouse input.
Note: Is the mouse move event being fired constantly? Bug report: https://code.google.com/p/chromium/issues/detail?id=390326&thanks=390326&ts=1404171639 This is an issue with Windows on Chrome (and some other browsers on Windows). Some programs may constantly send a WM_MOUSEMOVE signal, causing chrome to fire mouse move events even if the mouse pointer is not moving.
To combat this bug, we will track coordinates and only notify when these coordinates are changed.