From 4d74206ac3ef97bfe250f838f157d176e089e46f Mon Sep 17 00:00:00 2001 From: nicolas Date: Wed, 13 Sep 2017 17:35:49 +0200 Subject: [PATCH] fix(ui/conference): conference name is know on 1 row. --- ui/views/App/Calls/Conference.qml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/ui/views/App/Calls/Conference.qml b/ui/views/App/Calls/Conference.qml index b79e6f39f..da06b1137 100644 --- a/ui/views/App/Calls/Conference.qml +++ b/ui/views/App/Calls/Conference.qml @@ -48,11 +48,11 @@ Rectangle { iconSize: CallStyle.header.iconSize } - TextEdit { + TextInput { id: conferenceDescription anchors.centerIn: parent - horizontalAlignment: Text.AlignHCenter + horizontalAlignment: TextInput.AlignHCenter text: qsTr('conferenceTitle') color: ConferenceStyle.description.color @@ -64,8 +64,14 @@ Rectangle { height: parent.height width: parent.width - rightActions.width - leftActions.width - ConferenceStyle.description.width + focus: true + + onEditingFinished: function() { + conferenceDescription.focus= false + } } + // ----------------------------------------------------------------------- // Video actions. // -----------------------------------------------------------------------