From 72edb5de006251f6d561291ccf230d685bfb5f16 Mon Sep 17 00:00:00 2001 From: monsta Date: Thu, 24 May 2018 16:58:21 +0300 Subject: pluma-notebook: pass event to gdk_seat_grab follow-up to d6d1cdb0e241ee3a07200ad0561a8105b6243c2b --- pluma/pluma-notebook.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pluma/pluma-notebook.c b/pluma/pluma-notebook.c index 39502ec2..5936ed82 100644 --- a/pluma/pluma-notebook.c +++ b/pluma/pluma-notebook.c @@ -394,7 +394,7 @@ pluma_notebook_reorder_tab (PlumaNotebook *src, static void drag_start (PlumaNotebook *notebook, - guint32 time) + GdkEvent *event) { GdkSeat *seat; GdkDevice *device; @@ -424,7 +424,7 @@ drag_start (PlumaNotebook *notebook, GDK_SEAT_CAPABILITY_POINTER, FALSE, cursor, - NULL, + event, NULL, NULL); } @@ -493,7 +493,7 @@ motion_notify_cb (PlumaNotebook *notebook, event->x_root, event->y_root)) { - drag_start (notebook, event->time); + drag_start (notebook, (GdkEvent *) event); return TRUE; } @@ -570,7 +570,7 @@ move_current_tab_to_another_notebook (PlumaNotebook *src, G_CALLBACK (motion_notify_cb), NULL); - drag_start (dest, event->time); + drag_start (dest, (GdkEvent *) event); } static gboolean -- cgit v1.2.1