fix(popups): set scrollview sizing
This commit is contained in:
parent
6f9149428d
commit
d553934b45
|
@ -368,6 +368,8 @@ StatusStackModal {
|
|||
stackItems: [
|
||||
StatusScrollView {
|
||||
id: generalView
|
||||
implicitWidth: root.width
|
||||
implicitHeight: root.height
|
||||
|
||||
readonly property bool canGoNext: nameInput.valid && descriptionTextInput.valid
|
||||
|
||||
|
|
|
@ -195,12 +195,12 @@ StatusModal {
|
|||
|
||||
contentItem: StatusScrollView {
|
||||
id: scroll
|
||||
width: root.width
|
||||
implicitWidth: root.width
|
||||
implicitHeight: 400
|
||||
topPadding: Style.current.halfPadding
|
||||
bottomPadding: Style.current.halfPadding
|
||||
leftPadding: Style.current.padding
|
||||
rightPadding: Style.current.padding
|
||||
height: 400
|
||||
objectName: "AddAccountModalContent"
|
||||
|
||||
Column {
|
||||
|
|
Loading…
Reference in New Issue