fix qml issue after rebasing
This commit is contained in:
parent
3b9be01cc5
commit
6e20f47ec8
17
main.qml
17
main.qml
|
@ -160,6 +160,15 @@ ApplicationWindow {
|
|||
height: parent.height
|
||||
Layout.minimumWidth: 200
|
||||
|
||||
ColumnLayout {
|
||||
anchors.rightMargin: 0
|
||||
anchors.fill: parent
|
||||
|
||||
Item {
|
||||
Layout.preferredHeight: 100
|
||||
Layout.fillHeight: false
|
||||
Layout.fillWidth: true
|
||||
|
||||
Text {
|
||||
id: element
|
||||
x: 772
|
||||
|
@ -237,6 +246,12 @@ ApplicationWindow {
|
|||
font.pixelSize: 28
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Item {
|
||||
Layout.fillHeight: true
|
||||
Layout.fillWidth: true
|
||||
|
||||
Component {
|
||||
id: chatViewDelegate
|
||||
Label { text: "Name:" + name }
|
||||
|
@ -249,6 +264,8 @@ ApplicationWindow {
|
|||
delegate: chatViewDelegate
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Item {
|
||||
width: parent.width/2
|
||||
|
|
Loading…
Reference in New Issue