Skip to content

Commit c2cfd20

Browse files
committed
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
1 parent 4840a64 commit c2cfd20

1 file changed

Lines changed: 1 addition & 6 deletions

File tree

qml/FolderGridViewPopup.qml

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -209,12 +209,7 @@ Popup {
209209
checkDragMove()
210210
}
211211
onDropped: (drop) => {
212-
// drop over the left or right boundary of the page, do nothing
213-
if (pageIntent !== 0) {
214-
pageIntent = 0
215-
return
216-
}
217-
// drop into current page
212+
// Boundary release requires responsive movement, BUG-344221
218213
let dragId = drop.getDataAsString("text/x-dde-launcher-dnd-desktopId")
219214
dropOnPage(dragId, "internal/folders/" + folderLoader.currentFolderId, folderPagesView.currentIndex)
220215
pageIntent = 0

0 commit comments

Comments
 (0)