From 04a9b5b5f84cabc214efd585f3a2c7c7e90a9b88 Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Fri, 8 Jan 2016 15:37:10 -0500 Subject: [PATCH] x11: 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/x11/gdkcursor-x11.c | 1 + 1 file changed, 1 insertion(+) diff --git a/gdk/x11/gdkcursor-x11.c b/gdk/x11/gdkcursor-x11.c index 03d49baa96..3cce62fed4 100644 --- a/gdk/x11/gdkcursor-x11.c +++ b/gdk/x11/gdkcursor-x11.c @@ -624,6 +624,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" },