Skip to content
Snippets Groups Projects
Commit 12d1b4f8 authored by Benjamin Arnaud's avatar Benjamin Arnaud Committed by Hugo Beauzée-Luyssen
Browse files

qml/MediaGroupList: Fix DragItem id and name implementation

fix #25668
parent 5b1fb7d5
No related branches found
No related tags found
1 merge request!72qml/MediaGroupList: Fix DragItem id and name implementation
Pipeline #94373 passed with stage
in 27 minutes and 26 seconds
......@@ -194,7 +194,7 @@ Widgets.NavigableFocusScope {
}
Widgets.DragItem {
id: dragItem
id: dragItemGroup
function updateComponents(maxCovers) {
var items = modelSelect.selectedIndexes.slice(0, maxCovers).map(function (x){
......@@ -205,13 +205,13 @@ Widgets.NavigableFocusScope {
return { artwork: item.thumbnail || VLCStyle.noArtCover }
});
var title = items.map(function (item) {
return item.title
var name = items.map(function (item) {
return item.name
}).join(", ");
return {
covers: covers,
title: title,
title: name,
count: modelSelect.selectedIndexes.length
}
}
......@@ -284,7 +284,7 @@ Widgets.NavigableFocusScope {
// NOTE: We don't want to show the indicator for a group.
showNewIndicator: (model.count === 1)
dragItem: root.dragItem
dragItem: dragItemGroup
selectedUnderlay : shadows.selected
unselectedUnderlay: shadows.unselected
......@@ -364,7 +364,7 @@ Widgets.NavigableFocusScope {
selectionDelegateModel: modelSelect
dragItem: root.dragItem
dragItem: dragItemGroup
header: root.header
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment