summaryrefslogtreecommitdiff
path: root/desktop-shell
diff options
context:
space:
mode:
authorJonas Ådahl <jadahl@gmail.com>2014-04-12 09:39:51 +0200
committerKristian Høgsberg <krh@bitplanet.net>2014-04-21 16:03:28 -0700
commit1679f232e541489eedd94774bcfaec9752fdea64 (patch)
tree943d751f7bb59d545e6d5fad314d83017d649de1 /desktop-shell
parente57d1f211d1d9ff594e81e1cb14f587587c6c3c7 (diff)
downloadweston-1679f232e541489eedd94774bcfaec9752fdea64.tar.gz
libinput: Forward frame events to clients
Fixes: https://bugs.freedesktop.org/show_bug.cgi?id=77353 Signed-off-by: Jonas Ådahl <jadahl@gmail.com>
Diffstat (limited to 'desktop-shell')
-rw-r--r--desktop-shell/shell.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/desktop-shell/shell.c b/desktop-shell/shell.c
index 07327890..bc4a2585 100644
--- a/desktop-shell/shell.c
+++ b/desktop-shell/shell.c
@@ -1403,6 +1403,11 @@ touch_move_grab_motion(struct weston_touch_grab *grab, uint32_t time,
}
static void
+touch_move_grab_frame(struct weston_touch_grab *grab)
+{
+}
+
+static void
touch_move_grab_cancel(struct weston_touch_grab *grab)
{
struct weston_touch_move_grab *move =
@@ -1417,6 +1422,7 @@ static const struct weston_touch_grab_interface touch_move_grab_interface = {
touch_move_grab_down,
touch_move_grab_up,
touch_move_grab_motion,
+ touch_move_grab_frame,
touch_move_grab_cancel,
};