From f6497f43b02e8b0351d0bbf0446c037161cda430 Mon Sep 17 00:00:00 2001 From: Josh Rahm Date: Mon, 5 Jan 2026 01:17:30 -0700 Subject: [fix] issue where dragging doesn't work on native. --- rt/include/plugin.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'rt/include/plugin.h') diff --git a/rt/include/plugin.h b/rt/include/plugin.h index d7ae18b..3098602 100644 --- a/rt/include/plugin.h +++ b/rt/include/plugin.h @@ -144,9 +144,9 @@ typedef struct PLUGIN { uint32_t modifiers, opqst_t state)); /* Absolute motion only for now; relative motion stays in the runtime. */ - EXPORT(opqst_t (*plugin_handle_motion)( - struct wlr_pointer_motion_absolute_event *event, uint32_t modifiers, - double lx, double ly, opqst_t state)); + EXPORT(opqst_t (*plugin_handle_motion)(void *event, uint32_t modifiers, + uint32_t is_absolute, double lx, + double ly, opqst_t state)); /* * Handles a surface being mapped, unmapped or destroyed. -- cgit