From 5e9070145e7fda00d766e3829b8469360e6e4832 Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Thu, 21 Mar 2024 21:35:45 -0400 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 ceebb55ebd..4dee8ffd08 100644 --- a/gdk/wayland/gdkcursor-wayland.c +++ b/gdk/wayland/gdkcursor-wayland.c @@ -79,6 +79,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" },