fix(ui/conference): fix alignment of conference title

This commit is contained in:
nicolas 2017-09-14 13:35:45 +02:00
parent 78ebe16ee7
commit 54bb2c6918

View file

@ -52,7 +52,8 @@ Rectangle {
id: conferenceDescription
anchors.centerIn: parent
horizontalAlignment: TextInput.AlignHCenter
horizontalAlignment: TextInput.AlignHLeft
text: qsTr('conferenceTitle')
color: ConferenceStyle.description.color
@ -66,8 +67,8 @@ Rectangle {
width: parent.width - rightActions.width - leftActions.width - ConferenceStyle.description.width
focus: true
onEditingFinished: function() {
conferenceDescription.focus= false
onEditingFinished: {
conferenceDescription.focus = false
}
}