fix(ContactsColumnView): Removed margin when the list positioned not at the end
Closes #7526
This commit is contained in:
parent
f48aee2e44
commit
b984b04c70
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue