gmamaladze / globalmousekeyhook

This library allows you to tap keyboard and mouse, detect and record their activity even when an application is inactive and runs in background.
MIT License
1.05k stars 257 forks source link

SHIFT key auto fires keyup event #97

Open brownsugar opened 6 years ago

brownsugar commented 6 years ago

I use KeyDown and Keyup event to capture keys. For example, press SHIFT key and hold it, then press numpad 8, I will receive SHIFT keyup event and the input will auto change to 'Up'(Any solution to disable this kind of shortcuts?), after I release 8, it fires keydown event again(even I always hold SHIFT key). image

But if I hold CTRL and press numpad 8, everything works fine(CTRL keyup event will not fire until I release it, both CTRL and ALT are fine). image