Skip to content
Snippets Groups Projects
Commit ca37169e authored by Fatih Uzunoğlu's avatar Fatih Uzunoğlu Committed by Pierre Lamot
Browse files

qml: integrate new SortControl to BannerSources

parent 017a8f89
No related branches found
No related tags found
No related merge requests found
......@@ -236,6 +236,7 @@ Widgets.NavigableFocusScope {
id: sortControl
textRole: "text"
criteriaRole: "criteria"
listWidth: VLCStyle.widthSortBox
height: localToolbar.height
......@@ -246,9 +247,18 @@ Widgets.NavigableFocusScope {
onSortSelected: {
if (contentModel !== undefined) {
contentModel.sortCriteria = modelData.criteria
contentModel.sortCriteria = modelData[criteriaRole]
}
}
onSortOrderSelected: {
if (contentModel !== undefined) {
contentModel.sortOrder = order
}
}
sortKey: contentModel.sortCriteria
sortOrder: contentModel.sortOrder
}
}
......
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