From 659eb6c681f2e021b4f18c2b9e63847844aa59af Mon Sep 17 00:00:00 2001 From: Jonathan Rainville Date: Fri, 30 Apr 2021 14:15:50 -0400 Subject: [PATCH] fix: fix lists overflowing --- .../Chat/CommunityComponents/CommunityMembersPopup.qml | 1 + .../CommunityComponents/CommunityProfilePopupMembersList.qml | 5 +++-- ui/onboarding/Login/AccountList.qml | 1 + 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/ui/app/AppLayouts/Chat/CommunityComponents/CommunityMembersPopup.qml b/ui/app/AppLayouts/Chat/CommunityComponents/CommunityMembersPopup.qml index ba54187919..ef8c0790a4 100644 --- a/ui/app/AppLayouts/Chat/CommunityComponents/CommunityMembersPopup.qml +++ b/ui/app/AppLayouts/Chat/CommunityComponents/CommunityMembersPopup.qml @@ -100,6 +100,7 @@ ModalPopup { Layout.fillWidth: true Layout.fillHeight: true model: community.members + clip: true delegate: Item { id: contactRow width: parent.width diff --git a/ui/app/AppLayouts/Chat/CommunityComponents/CommunityProfilePopupMembersList.qml b/ui/app/AppLayouts/Chat/CommunityComponents/CommunityProfilePopupMembersList.qml index 2e7195569f..0903ba182c 100644 --- a/ui/app/AppLayouts/Chat/CommunityComponents/CommunityProfilePopupMembersList.qml +++ b/ui/app/AppLayouts/Chat/CommunityComponents/CommunityProfilePopupMembersList.qml @@ -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 diff --git a/ui/onboarding/Login/AccountList.qml b/ui/onboarding/Login/AccountList.qml index ba698d0827..3397144a41 100644 --- a/ui/onboarding/Login/AccountList.qml +++ b/ui/onboarding/Login/AccountList.qml @@ -13,6 +13,7 @@ ListView { model: accounts focus: true spacing: Style.current.smallPadding + clip: true delegate: AddressView { username: model.username