fix: InDropdown scrollable height

This commit is contained in:
Alex Jbanca 2023-06-20 12:18:32 +03:00 committed by Alex Jbanca
parent 75e2fff7c0
commit d79a93bb6a
1 changed files with 17 additions and 21 deletions

View File

@ -151,7 +151,7 @@ StatusDropdown {
StatusScrollView {
id: scrollView
Layout.fillWidth: true
Layout.minimumHeight: Math.min(d.maxHeightCountNo, topRepeater.count) * d.itemStandardHeight
Layout.minimumHeight: Math.min(d.maxHeightCountNo * d.itemStandardHeight, contentHeight)
Layout.maximumHeight: Layout.minimumHeight
contentWidth: availableWidth
Layout.bottomMargin: d.defaultVMargin
@ -389,15 +389,10 @@ StatusDropdown {
}
}
}
}
StatusBaseText {
id: noContactsText
parent: scrollView
anchors.centerIn: parent
horizontalAlignment: Text.AlignHCenter
verticalAlignment: Text.AlignVCenter
@ -418,6 +413,7 @@ StatusDropdown {
lineHeight: 1.2
}
}
}
StatusButton {
Layout.fillWidth: true