Skip to content

Commit

Permalink
fix(StatusStickersPopup): fix stick pack list not scrollable
Browse files Browse the repository at this point in the history
Fixes #8989
  • Loading branch information
jrainville committed Jan 11, 2023
1 parent ab96c17 commit 3a542ca
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions ui/imports/shared/status/StatusStickersPopup.qml
Original file line number Diff line number Diff line change
Expand Up @@ -220,11 +220,11 @@ Popup {
}
}

Row {
RowLayout {
id: footerContent
Layout.fillWidth: true
leftPadding: Style.current.padding / 2
rightPadding: Style.current.padding / 2
Layout.rightMargin: Style.current.padding / 2
Layout.leftMargin: Style.current.padding / 2
spacing: Style.current.padding / 2

StatusFlatRoundButton {
Expand Down Expand Up @@ -254,12 +254,11 @@ Popup {
}

StatusScrollView {
id: installedStickersSV
height: 40
Layout.fillWidth: true
ScrollBar.vertical.policy: ScrollBar.AlwaysOff

RowLayout {
id: stickersRowLayout
width: installedStickersSV.availableWidth
spacing: Style.current.padding

Repeater {
Expand Down

0 comments on commit 3a542ca

Please sign in to comment.