fix(ContactsColumnView): Removed margin when the list positioned not at the end

Closes #7526
This commit is contained in:
Michał Cieślak 2022-09-26 11:01:15 +02:00 committed by Michał
parent f48aee2e44
commit b984b04c70
1 changed files with 90 additions and 80 deletions

View File

@ -44,6 +44,7 @@ Item {
anchors {
fill: parent
margins: Style.current.padding
bottomMargin: 0
}
spacing: Style.current.padding
@ -139,11 +140,19 @@ Item {
onClicked: Global.openPopup(contactRequestsPopup)
}
Item {
Layout.fillWidth: true
Layout.fillHeight: true
clip: true
// chat list
StatusScrollView {
id: scroll
Layout.fillWidth: true
Layout.fillHeight: true
clip: false
anchors.fill: parent
anchors.bottomMargin: Style.current.padding
StatusChatList {
id: channelList
@ -240,6 +249,7 @@ Item {
}
}
}
}
Component {
id: publicChatPopupComponent