Dear Maintainer,
I started kobodl and tried to navigate the menus using a gamepad
joystick. I tilted the joystick axis DOWN to scroll the highlighted menu
item DOWN by ONE entry.
The highlighted menu item scrolled DOWN by several items at once.
It was impossible to select a particular menu item unless it happened to
stop scrolling on that item.
The highlighted menu item should scroll down to the NEXT item for
each time the joystick axis is tilted down, and no further. I made some
changes to the source and generated the following diff which seemed to
alleviate the problem. My apologies if this is unusable since I've never
generated a patch before.
*****BEGIN DIFF OUTPUT OF kobo.cpp*****
100a101,104
1725c1729
< if(ev.jaxis.value < -3200)
---
1730c1734
< else if(ev.jaxis.value > 3200)
---
1741a1746
1746c1751
< if(ev.jaxis.value < -3200)
---
1751c1756
< else if(ev.jaxis.value > 3200)
---
1762a1768
*****END DIFF OUTPUT OF kobo.cpp*****