We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4840a64 commit c2cfd20Copy full SHA for c2cfd20
1 file changed
qml/FolderGridViewPopup.qml
@@ -209,12 +209,7 @@ Popup {
209
checkDragMove()
210
}
211
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
+ // Boundary release requires responsive movement, BUG-344221
218
let dragId = drop.getDataAsString("text/x-dde-launcher-dnd-desktopId")
219
dropOnPage(dragId, "internal/folders/" + folderLoader.currentFolderId, folderPagesView.currentIndex)
220
pageIntent = 0
0 commit comments