phaselden / FlipIt

Flip Clock screensaver
Creative Commons Zero v1.0 Universal
1.08k stars 126 forks source link

Update Mouse Move Distance/Sensitivity #13

Closed SmilerRyan closed 3 years ago

SmilerRyan commented 3 years ago

Please change the sensitivity from at least 5 pixels to at least 1, to allow for instantaneously closing in mouse moved slowly. Edit: Also from my experience, using this to check may be better for this situation: if( e.X != _mouseLocation.X || e.Y != _mouseLocation.Y)

phaselden commented 3 years ago

Thanks for the PR @SmilerRyan!

The change looks good. But I looked at your comment above and then went with a very small variation on that. ie:

if (_mouseLocation != e.Location)