fix(CommunityEdit): content width should have fixed size

Closes #9051
This commit is contained in:
Alexandra Betouni 2023-01-13 15:10:18 +02:00 committed by Alexandra Betouni
parent 22da265d78
commit 7620061ba3
2 changed files with 5 additions and 5 deletions

View File

@ -24,7 +24,6 @@ Item {
property string imageData
implicitHeight: layout.implicitHeight
implicitWidth: layout.implicitWidth
ColumnLayout {
id: layout

View File

@ -25,6 +25,8 @@ StatusScrollView {
id: root
objectName: "communityEditPanelScrollView"
implicitHeight: layout.implicitHeight
property alias name: nameInput.text
property alias description: descriptionTextInput.text
property alias introMessage: introMessageTextInput.text
@ -46,13 +48,12 @@ StatusScrollView {
readonly property bool saveChangesButtonEnabled: true
implicitWidth: layout.implicitWidth
implicitHeight: layout.implicitHeight
ColumnLayout {
id: layout
width: root.availableWidth
width: 608
height: childrenRect.height
spacing: 12
CommunityNameInput {