From ba0e0b84c08f061748b2be11d0a6156779d87fc7 Mon Sep 17 00:00:00 2001 From: Noelia Date: Wed, 2 Feb 2022 11:27:26 +0100 Subject: [PATCH] fix(@desktop/chat): [restore after rebase] Group members list must show only 5 It restores job done in PR #4461 - Task #4386 after base_bc rebase. --- ui/app/AppLayouts/Chat/popups/GroupInfoPopup.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ui/app/AppLayouts/Chat/popups/GroupInfoPopup.qml b/ui/app/AppLayouts/Chat/popups/GroupInfoPopup.qml index 6d6c829e79..951c3ed706 100644 --- a/ui/app/AppLayouts/Chat/popups/GroupInfoPopup.qml +++ b/ui/app/AppLayouts/Chat/popups/GroupInfoPopup.qml @@ -169,7 +169,7 @@ StatusModal { id: groupInfoItem width: parent.width - 2*Style.current.padding - height: parent.height + height: parent.height - 2*Style.current.padding anchors.top: parent.top anchors.topMargin: Style.current.padding anchors.horizontalCenter: parent.horizontalCenter @@ -214,9 +214,9 @@ StatusModal { ListView { id: memberList - spacing: Style.current.padding Layout.fillWidth: true Layout.fillHeight: true + clip: true model: popup.chatContentModule.usersModule.model delegate: StatusListItem { id: contactRow