From b140596412f38bfa810637dde2457eb18b5abe38 Mon Sep 17 00:00:00 2001 From: Alexandra Betouni Date: Wed, 10 Aug 2022 10:51:04 +0300 Subject: [PATCH] fix(StatusStickerPopup): Bottom row layout issues Closes #6833 --- ui/imports/shared/status/StatusStickersPopup.qml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/ui/imports/shared/status/StatusStickersPopup.qml b/ui/imports/shared/status/StatusStickersPopup.qml index a6af210e47..763d2721ab 100644 --- a/ui/imports/shared/status/StatusStickersPopup.qml +++ b/ui/imports/shared/status/StatusStickersPopup.qml @@ -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 + } } } }