From: Jens Peters Date: Fri, 12 Apr 2024 21:21:39 +0000 (+0200) Subject: input: notify idle manager when emulating cursor move X-Git-Url: https://git.mdlowis.com/?a=commitdiff_plain;h=42c09eeef815a021310ac488dfbe8bfc83bb1699;p=proto%2Flabwc.git input: notify idle manager when emulating cursor move Looks like we forgot that one earlier. --- diff --git a/src/input/cursor.c b/src/input/cursor.c index 17c57621..7d3a8733 100644 --- a/src/input/cursor.c +++ b/src/input/cursor.c @@ -1091,6 +1091,8 @@ void cursor_emulate_move_absolute(struct seat *seat, struct wlr_input_device *device, double x, double y, uint32_t time_msec) { + idle_manager_notify_activity(seat->seat); + double lx, ly; wlr_cursor_absolute_to_layout_coords(seat->cursor, device, x, y, &lx, &ly);