fix(ShareProfileDialog): contents spills outside of dialog
- make the contents scrollable using a `StatusScrollView` Fixes #13967
This commit is contained in:
parent
1b77695e01
commit
864be0ad37
|
@ -28,9 +28,17 @@ StatusDialog {
|
||||||
|
|
||||||
topPadding: Style.current.padding
|
topPadding: Style.current.padding
|
||||||
bottomPadding: Style.current.xlPadding
|
bottomPadding: Style.current.xlPadding
|
||||||
horizontalPadding: 80
|
horizontalPadding: 0
|
||||||
|
|
||||||
contentItem: ColumnLayout {
|
StatusScrollView {
|
||||||
|
anchors.fill: parent
|
||||||
|
contentWidth: availableWidth
|
||||||
|
|
||||||
|
ColumnLayout {
|
||||||
|
anchors.left: parent.left
|
||||||
|
anchors.leftMargin: 40
|
||||||
|
anchors.right: parent.right
|
||||||
|
anchors.rightMargin: 40
|
||||||
spacing: Style.current.halfPadding
|
spacing: Style.current.halfPadding
|
||||||
|
|
||||||
Rectangle {
|
Rectangle {
|
||||||
|
@ -132,4 +140,5 @@ StatusDialog {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue