From 771149e19a81fce3ff7a820412376cd8cfe5c069 Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Fri, 8 Jan 2016 15:38:02 -0500 Subject: [PATCH] wayland: Ensure we have a dnd-ask cursor We use this for DND, so make sure that we fall back to some other cursor if this one isn't present. --- gdk/wayland/gdkcursor-wayland.c | 1 + 1 file changed, 1 insertion(+) diff --git a/gdk/wayland/gdkcursor-wayland.c b/gdk/wayland/gdkcursor-wayland.c index bdfa3167df..4f938178be 100644 --- a/gdk/wayland/gdkcursor-wayland.c +++ b/gdk/wayland/gdkcursor-wayland.c @@ -100,6 +100,7 @@ static const struct { { "copy", "dnd-copy" }, { "move", "dnd-move" }, { "no-drop", "dnd-none" }, + { "dnd-ask", "dnd-copy" }, /* not CSS, but we want to guarantee it anyway */ { "not-allowed", "crossed_circle" }, { "grab", "hand2" }, { "grabbing", "hand2" },