-
Notifications
You must be signed in to change notification settings - Fork 112
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Move syn()
convenience method from InputDevice
to EventIO
#224
Conversation
This one mimicks the `syn()` method found in UInput class and just makes it easier to inject `EV_SYNC` events. It's easier to parse event blocks visually.
Thanks. Maybe the |
I actually thought about that! I wasn't sure if that would work though as UInput works a bit differently and doesn't reference If yes, I'll update the PR |
I think it would, because the |
Okay, I went through the paths and you're right. One more question, what do you think about |
This reverts commit 8828395.
Makes it possible to use it with `InputDevice` as well
syn()
convenience method to InputDevicesyn()
convenience method from InputDevice
to EventIO
syn()
convenience method from InputDevice
to EventIO
syn()
convenience method from InputDevice
to EventIO
Yes, I agree |
Is this ready to be merged? |
As far as I'm concerned, yes. |
Thanks! |
This one mimicks the
syn()
method found in UInput class and just makes it easier to injectEV_SYNC
events. It's easier to parse event blocks visually.