From e1fd55c7db69c8e9db8840908f74a3e759b6bbcd Mon Sep 17 00:00:00 2001 From: kenmcgaugh Date: Sat, 14 Mar 2026 17:58:06 +1300 Subject: [PATCH] Fix for hiding drag count text MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit When only one item is being dragged, the count badge is supposed to be hidden. While the red disk does correctly hide itself the text component wasn’t. This fixes that. Signed-off-by: kenmcgaugh --- ui/qml/xstudio/windows/drag_drop/XsGlobalDragDropHandler.qml | 1 + 1 file changed, 1 insertion(+) diff --git a/ui/qml/xstudio/windows/drag_drop/XsGlobalDragDropHandler.qml b/ui/qml/xstudio/windows/drag_drop/XsGlobalDragDropHandler.qml index f51d9437e..d148742a4 100644 --- a/ui/qml/xstudio/windows/drag_drop/XsGlobalDragDropHandler.qml +++ b/ui/qml/xstudio/windows/drag_drop/XsGlobalDragDropHandler.qml @@ -149,6 +149,7 @@ DropArea { x: drag_cursor.x + drag_cursor.width y: drag_cursor.y + drag_cursor.height - height/2 color: "#FFF00000" + clip: true //visible: dragCount > 1 // this doesn't work for some reason Text {