fix: add scrollbar to installed sticker packs

Fixes #1061
This commit is contained in:
Richard Ramos 2020-11-27 16:51:52 -04:00 committed by Iuri Matias
parent 3f12320764
commit b6f362ddb5
1 changed files with 28 additions and 21 deletions

View File

@ -179,12 +179,19 @@ Popup {
}
}
RowLayout {
spacing: Style.current.padding
ScrollView {
anchors.top: parent.top
anchors.left: btnHistory.right
anchors.leftMargin: Style.current.padding
anchors.right: parent.right
height: 32
clip: true
id: installedStickersSV
ScrollBar.vertical.policy: ScrollBar.AlwaysOff
RowLayout {
id: stickersRowLayout
spacing: Style.current.padding
Repeater {
id: stickerPackListView
property int selectedPackId: -1
@ -207,7 +214,7 @@ Popup {
}
}
}
}
}
}
}