Add mouse wheel support for Android

Fixes #18471

Tested on a Poco F4 phone with a generic Bluetooth mouse.
This commit is contained in:
Henrik Rydgård
2023-12-04 13:41:52 +01:00
parent c1637b023b
commit 84d3bfc506
3 changed files with 21 additions and 3 deletions
+1 -1
View File
@@ -119,7 +119,7 @@ bool ScrollView::Key(const KeyInput &input) {
if (input.flags & KEY_DOWN) {
if ((input.keyCode == NKCODE_EXT_MOUSEWHEEL_UP || input.keyCode == NKCODE_EXT_MOUSEWHEEL_DOWN) &&
(input.flags & KEY_HASWHEELDELTA)) {
scrollSpeed = (float)(short)(input.flags >> 16) * 1.25f; // Fudge factor
scrollSpeed = (float)(short)(input.flags >> 16) * 1.25f; // Fudge factor. TODO: Should be moved to the backends.
}
switch (input.keyCode) {