From 03afa55aaba0a71d9e028c57a7073a688362aa5e Mon Sep 17 00:00:00 2001 From: nicolas Date: Fri, 15 Sep 2017 10:21:21 +0200 Subject: [PATCH] fix(ui/conference): regress the conference name to simple text. --- ui/views/App/Calls/Conference.qml | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/ui/views/App/Calls/Conference.qml b/ui/views/App/Calls/Conference.qml index 8e9a34826..7003edd9d 100644 --- a/ui/views/App/Calls/Conference.qml +++ b/ui/views/App/Calls/Conference.qml @@ -48,12 +48,12 @@ Rectangle { iconSize: CallStyle.header.iconSize } - TextInput { + Text { id: conferenceDescription anchors.centerIn: parent - horizontalAlignment: TextInput.AlignHLeft + horizontalAlignment: Text.AlignHCenter text: qsTr('conferenceTitle') color: ConferenceStyle.description.color @@ -65,11 +65,6 @@ Rectangle { height: parent.height width: parent.width - rightActions.width - leftActions.width - ConferenceStyle.description.width - focus: true - - onEditingFinished: { - conferenceDescription.focus = false - } }