diff --git a/gdk/gdkdnd.c b/gdk/gdkdnd.c index dd149e597a..2d6d7decff 100644 --- a/gdk/gdkdnd.c +++ b/gdk/gdkdnd.c @@ -36,12 +36,12 @@ static struct { const gchar *name; GdkCursor *cursor; } drag_cursors[] = { - { GDK_ACTION_DEFAULT, NULL, NULL }, - { GDK_ACTION_ASK, "dnd-ask", NULL }, - { GDK_ACTION_COPY, "dnd-copy", NULL }, + { GDK_ACTION_DEFAULT, NULL, NULL }, + { GDK_ACTION_ASK, "dnd-ask", NULL }, + { GDK_ACTION_COPY, "copy", NULL }, { GDK_ACTION_MOVE, "dnd-move", NULL }, { GDK_ACTION_LINK, "dnd-link", NULL }, - { 0, "dnd-none", NULL }, + { 0, "default", NULL }, }; enum { diff --git a/gdk/wayland/gdkcursor-wayland.c b/gdk/wayland/gdkcursor-wayland.c index b04b9313af..7e02be9be4 100644 --- a/gdk/wayland/gdkcursor-wayland.c +++ b/gdk/wayland/gdkcursor-wayland.c @@ -101,6 +101,7 @@ static const struct { { "move", "dnd-move" }, { "no-drop", "dnd-none" }, { "dnd-ask", "dnd-copy" }, /* not CSS, but we want to guarantee it anyway */ + { "dnd-move", "default" }, { "not-allowed", "crossed_circle" }, { "grab", "hand2" }, { "grabbing", "hand2" },