Commit 4d74206a authored by nicolas's avatar nicolas

fix(ui/conference): conference name is know on 1 row.

parent e269c24b
...@@ -48,11 +48,11 @@ Rectangle { ...@@ -48,11 +48,11 @@ Rectangle {
iconSize: CallStyle.header.iconSize iconSize: CallStyle.header.iconSize
} }
TextEdit { TextInput {
id: conferenceDescription id: conferenceDescription
anchors.centerIn: parent anchors.centerIn: parent
horizontalAlignment: Text.AlignHCenter horizontalAlignment: TextInput.AlignHCenter
text: qsTr('conferenceTitle') text: qsTr('conferenceTitle')
color: ConferenceStyle.description.color color: ConferenceStyle.description.color
...@@ -64,8 +64,14 @@ Rectangle { ...@@ -64,8 +64,14 @@ Rectangle {
height: parent.height height: parent.height
width: parent.width - rightActions.width - leftActions.width - ConferenceStyle.description.width width: parent.width - rightActions.width - leftActions.width - ConferenceStyle.description.width
focus: true
onEditingFinished: function() {
conferenceDescription.focus= false
}
} }
// ----------------------------------------------------------------------- // -----------------------------------------------------------------------
// Video actions. // Video actions.
// ----------------------------------------------------------------------- // -----------------------------------------------------------------------
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment