Remove ScrollView

This commit is contained in:
Swapnil Tripathi 2021-07-04 08:44:11 +05:30 committed by Bart De Vries
parent fa65447874
commit 32260be05e

View File

@ -112,13 +112,12 @@ Loader {
Layout.alignment: Qt.AlignHCenter Layout.alignment: Qt.AlignHCenter
Layout.bottomMargin: Kirigami.Units.largeSpacing * 2 Layout.bottomMargin: Kirigami.Units.largeSpacing * 2
} }
Controls.ScrollView {
Layout.fillWidth: true
Layout.fillHeight: true
ListView { ListView {
id: playbackRateList id: playbackRateList
model: playbackRateModel model: playbackRateModel
delegate: Kirigami.SwipeListItem { Layout.fillWidth: true
Layout.fillHeight: true
delegate: Kirigami.BasicListItem {
contentItem: Controls.Label { contentItem: Controls.Label {
text: model.name text: model.name
} }
@ -131,5 +130,4 @@ Loader {
} }
} }
} }
}
} }