try to fix #LINQT-1605 cannot scroll in advanced settings
This commit is contained in:
parent
ca51d44505
commit
063cdfb33b
2 changed files with 3 additions and 0 deletions
|
|
@ -124,6 +124,7 @@ Rectangle {
|
|||
Repeater {
|
||||
id: contentRepeater
|
||||
model: mainItem.contentModel
|
||||
Layout.preferredHeight: implicitHeight
|
||||
delegate: ColumnLayout {
|
||||
Rectangle {
|
||||
visible: index !== 0
|
||||
|
|
|
|||
|
|
@ -155,6 +155,7 @@ AbstractSettingsLayout {
|
|||
ColumnLayout {
|
||||
spacing: 20 * DefaultStyle.dp
|
||||
Repeater {
|
||||
Layout.preferredHeight: implicitHeight
|
||||
model: PayloadTypeProxy {
|
||||
id: videoPayloadTypeProxy
|
||||
filterType: PayloadTypeProxy.Video | PayloadTypeProxy.NotDownloadable
|
||||
|
|
@ -168,6 +169,7 @@ AbstractSettingsLayout {
|
|||
}
|
||||
}
|
||||
Repeater {
|
||||
Layout.preferredHeight: implicitHeight
|
||||
model: PayloadTypeProxy {
|
||||
id: downloadableVideoPayloadTypeProxy
|
||||
filterType: PayloadTypeProxy.Video | PayloadTypeProxy.Downloadable
|
||||
|
|
|
|||
Loading…
Reference in a new issue