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. // -----------------------------------------------------------------------