fix: fix lists overflowing

This commit is contained in:
Jonathan Rainville 2021-04-30 14:15:50 -04:00 committed by Iuri Matias
parent eac7009807
commit 659eb6c681
3 changed files with 5 additions and 2 deletions

View File

@ -100,6 +100,7 @@ ModalPopup {
Layout.fillWidth: true
Layout.fillHeight: true
model: community.members
clip: true
delegate: Item {
id: contactRow
width: parent.width

View File

@ -12,7 +12,7 @@ Item {
property string headerTitle: ""
property string headerDescription: ""
property string headerImageSource: ""
height: 300
height: 450
CommunityPopupButton {
id: inviteBtn
@ -71,8 +71,9 @@ Item {
anchors.bottom: parent.bottom
anchors.left: parent.left
anchors.right: parent.right
anchors.bottomMargin: Style.current.halfPadding
anchors.bottomMargin: Style.current.bigPadding
spacing: 4
clip: true
model: community.members
delegate: Rectangle {
id: contactRow

View File

@ -13,6 +13,7 @@ ListView {
model: accounts
focus: true
spacing: Style.current.smallPadding
clip: true
delegate: AddressView {
username: model.username