From 0844a885587b118ffb5d91efc49f6360091985ad Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Thu, 4 Apr 2024 10:31:08 +0200 Subject: [PATCH] wayland: Guarantee dnd-move as a cursor name We need to go back to using this, since move is widely abused and thus can't change its image to one thats appropriate for dnd. --- 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 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" },