fix(StatusStickerPopup): Bottom row layout issues

Closes #6833
This commit is contained in:
Alexandra Betouni 2022-08-10 10:51:04 +03:00 committed by Jonathan Rainville
parent 4303d674dd
commit b140596412
1 changed files with 5 additions and 5 deletions

View File

@ -203,10 +203,8 @@ Popup {
StatusQControls.StatusFlatRoundButton {
id: btnAddStickerPack
implicitHeight: 24
implicitHeight: 40
implicitWidth: 24
anchors.bottom: parent.bottom
anchors.bottomMargin: Style.current.padding / 2
icon.name: "add"
type: StatusQControls.StatusFlatRoundButton.Type.Tertiary
color: "transparent"
@ -231,8 +229,7 @@ Popup {
StatusScrollView {
id: installedStickersSV
anchors.bottom: parent.bottom
height: 32
height: 40
RowLayout {
id: stickersRowLayout
@ -273,6 +270,9 @@ Popup {
color: Style.current.backgroundHover
}
}
Item {
Layout.fillWidth: true
}
}
}
}