From 71de45cb83337385850af9d8c373ef15a0c26b5c Mon Sep 17 00:00:00 2001 From: "g.willems" Date: Wed, 22 May 2024 20:41:57 +0200 Subject: [PATCH] win32: Fix invisible dnd-move cursor The cursor currently disappears while in DnD "move" action. Fix by assigning a standard arrow cursor. --- gdk/win32/gdkcursor-win32.c | 1 + 1 file changed, 1 insertion(+) diff --git a/gdk/win32/gdkcursor-win32.c b/gdk/win32/gdkcursor-win32.c index 4b6dfcb70b..f57f55f81c 100644 --- a/gdk/win32/gdkcursor-win32.c +++ b/gdk/win32/gdkcursor-win32.c @@ -40,6 +40,7 @@ static DefaultCursor default_cursors[] = { { "appstarting", IDC_APPSTARTING }, { "arrow", IDC_ARROW }, { "cross", IDC_CROSS }, + { "dnd-move", IDC_ARROW }, { "hand", IDC_HAND }, { "help", IDC_HELP }, { "ibeam", IDC_IBEAM },