Skip to content

Commit

Permalink
Merge tag 'JH7110_MM_v5.6.1' into vf2-devel
Browse files Browse the repository at this point in the history
  • Loading branch information
andyhu-stf committed Aug 22, 2023
2 parents beacb54 + c100194 commit fd5aeb4
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions package/weston/0009-weston-add-input-event.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
Weston ignore LIBINPUT_EVENT_POINTER_SCROLL_WHEEL(404) input event.

Signed-off-by: Leo Lu <leo.lu@starfivetech.com>


diff -purN a/libweston/libinput-device.c b/libweston/libinput-device.c
--- a/libweston/libinput-device.c 2023-08-22 13:50:41.901537810 +0800
+++ b/libweston/libinput-device.c 2023-08-22 13:51:16.129770832 +0800
@@ -565,6 +565,8 @@ evdev_device_process_event(struct libinp
handle_touch_frame(libinput_device,
libinput_event_get_touch_event(event));
break;
+ case LIBINPUT_EVENT_POINTER_SCROLL_WHEEL:
+ return 0;
default:
handled = 0;
weston_log("unknown libinput event %d\n",

0 comments on commit fd5aeb4

Please sign in to comment.