fix(StatusChatList): fixed dnd uncategorized channels

Part of #3364
This commit is contained in:
Alexandra Betouni 2023-03-10 19:14:31 +02:00
parent 30294f97fe
commit ef8860edbb
1 changed files with 1 additions and 2 deletions

View File

@ -232,8 +232,7 @@ Item {
repeat: false
onTriggered: {
if (dropArea.containsDrag) {
d.destinationPosition = root.model.get(draggable.DelegateModel.itemsIndex).position
statusChatListItems.items.move(dropArea.drag.source.DelegateModel.itemsIndex, draggable.DelegateModel.itemsIndex)
d.destinationPosition = index;
}
}
}