fixed the filepicker dialog and started a window file

This commit is contained in:
Chris Cochrun 2022-04-01 07:32:21 -05:00
parent 7545f05724
commit 366660dcb2
7 changed files with 71 additions and 48 deletions

View file

@ -108,7 +108,12 @@ ColumnLayout {
anchors.fill: parent
listItem: serviceItem
listView: serviceItemList
onMoveRequested: serviceItemModel.move(oldIndex, newIndex)
onMoveRequested: {
print(oldIndex, newIndex);
serviceItemModel.move(oldIndex, newIndex);
}
onDropped: {
}
onClicked: {
serviceItemList.currentIndex = index;
changeServiceItem(index);