-
Notifications
You must be signed in to change notification settings - Fork 71
Mouse scroll not working #24
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
Comments
Can you show your log with verbose flag?
|
Hello. Here is the output:
Thank you |
The wheel up/down events are arrived:
But they are not converted to touch events (injectTouchEvent) because this is a simulation of a touch device so only the left mouse button is used as a touch event. framebuffer-vncserver/src/framebuffer-vncserver.c Lines 184 to 205 in 4a13725
There is also a mouse device which handles the wheel, you can try it. |
Hello. Apparently I also tried using
Log below:
Thank you |
Your input device may not support wheel events. My touch device supports only BTN_TOUCH. (README) More log with evtest (examples in README)
You need a mouse input device for wheel events. |
Hello.
I'm using framebuffer-vnc in a Yocto based OS for hardware with a touch-screen.
The framebuffer-vnc is working very well in general. However, for my application, I need to allow the user to use the mouse scroll. Somehow the mouse scroll is not being recognized by the framebuffer-vnc. I'm passing the touch screen input device, /dev/input/eventX, which allows me to use the left and right buttons of the mouse, but not the scroll.
Does anyone have seen this before or know how to fix it or have any tips on where to start looking for?
Thank you,
Arthur
The text was updated successfully, but these errors were encountered: