From dbee1a81603c78cf457b58e8a491c096b6794ed4 Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Tue, 16 Jan 2024 19:45:33 -0500 Subject: [PATCH] dnd: Use standard cursor names The css spec doesn't cover the fringe 'ask' feature of DND, but apart from that, we should use the names in the spec. Fixes: #6337 --- gdk/gdkdrag.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/gdk/gdkdrag.c b/gdk/gdkdrag.c index 37ba388037..a0d821a369 100644 --- a/gdk/gdkdrag.c +++ b/gdk/gdkdrag.c @@ -56,10 +56,10 @@ static struct { GdkCursor *cursor; } drag_cursors[] = { { GDK_ACTION_ASK, "dnd-ask", NULL }, - { GDK_ACTION_COPY, "dnd-copy", NULL }, - { GDK_ACTION_MOVE, "dnd-move", NULL }, - { GDK_ACTION_LINK, "dnd-link", NULL }, - { 0, "dnd-none", NULL }, + { GDK_ACTION_COPY, "copy", NULL }, + { GDK_ACTION_MOVE, "move", NULL }, + { GDK_ACTION_LINK, "alias", NULL }, + { 0, "no-drop", NULL }, }; enum {