From c2cfd206804a51febbcb60f517e1cace516dc2bd Mon Sep 17 00:00:00 2001 From: xiepengfei Date: Mon, 22 Dec 2025 11:26:48 +0800 Subject: [PATCH] fix: Fix issue with icon drag-and-drop release failure Fix issue with icon drag-and-drop release failure Log: Fix issue with icon drag-and-drop release failure pms: BUG-344221 --- qml/FolderGridViewPopup.qml | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/qml/FolderGridViewPopup.qml b/qml/FolderGridViewPopup.qml index 3fbed305..23eb14fc 100644 --- a/qml/FolderGridViewPopup.qml +++ b/qml/FolderGridViewPopup.qml @@ -209,12 +209,7 @@ Popup { checkDragMove() } onDropped: (drop) => { - // drop over the left or right boundary of the page, do nothing - if (pageIntent !== 0) { - pageIntent = 0 - return - } - // drop into current page + // Boundary release requires responsive movement, BUG-344221 let dragId = drop.getDataAsString("text/x-dde-launcher-dnd-desktopId") dropOnPage(dragId, "internal/folders/" + folderLoader.currentFolderId, folderPagesView.currentIndex) pageIntent = 0