From e96f73cf1589c023ade74e4aeb16a0c422790161 Mon Sep 17 00:00:00 2001 From: Johannes Oertel Date: Mon, 9 May 2016 21:58:17 +0200 Subject: Do not reset double-click status on pointer movement This fixes a problem where a double click on an item in Nautilus icon view did not activate the moment when moving the pointer even slightly in between the two clicks. https://bugzilla.gnome.org/show_bug.cgi?id=748501 --- src/nautilus-canvas-container.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/nautilus-canvas-container.c b/src/nautilus-canvas-container.c index cf21a2e60..3427a75de 100644 --- a/src/nautilus-canvas-container.c +++ b/src/nautilus-canvas-container.c @@ -5403,6 +5403,8 @@ item_event_callback (EelCanvasItem *item, event_button = &event->button; switch (event->type) { + case GDK_MOTION_NOTIFY: + return FALSE; case GDK_BUTTON_PRESS: container->details->double_clicked = FALSE; if (handle_canvas_button_press (container, icon, event_button)) { -- cgit v1.2.1