fix(@desktop/chat): Group members list must show only 5
Enable ListView clip and modified ColumnLayout heigh to bound its painting to the needed content. Adjust ListView spacing to allow the visualization of 5 members. Closes #4386
This commit is contained in:
parent
f8f0952b56
commit
6d2d36650c
|
@ -162,7 +162,7 @@ StatusModal {
|
||||||
id: groupInfoItem
|
id: groupInfoItem
|
||||||
|
|
||||||
width: parent.width - 2*Style.current.padding
|
width: parent.width - 2*Style.current.padding
|
||||||
height: parent.height
|
height: parent.height - 2*Style.current.padding
|
||||||
anchors.top: parent.top
|
anchors.top: parent.top
|
||||||
anchors.topMargin: Style.current.padding
|
anchors.topMargin: Style.current.padding
|
||||||
anchors.horizontalCenter: parent.horizontalCenter
|
anchors.horizontalCenter: parent.horizontalCenter
|
||||||
|
@ -205,9 +205,9 @@ StatusModal {
|
||||||
|
|
||||||
ListView {
|
ListView {
|
||||||
id: memberList
|
id: memberList
|
||||||
spacing: Style.current.padding
|
|
||||||
Layout.fillWidth: true
|
Layout.fillWidth: true
|
||||||
Layout.fillHeight: true
|
Layout.fillHeight: true
|
||||||
|
clip: true
|
||||||
model: popup.channel? popup.channel.members : []
|
model: popup.channel? popup.channel.members : []
|
||||||
delegate: StatusListItem {
|
delegate: StatusListItem {
|
||||||
id: contactRow
|
id: contactRow
|
||||||
|
|
Loading…
Reference in New Issue