From 54bb2c69183186a429f0c57285e5a4f79539f35e Mon Sep 17 00:00:00 2001 From: nicolas Date: Thu, 14 Sep 2017 13:35:45 +0200 Subject: [PATCH] fix(ui/conference): fix alignment of conference title --- ui/views/App/Calls/Conference.qml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/ui/views/App/Calls/Conference.qml b/ui/views/App/Calls/Conference.qml index da06b1137..8e9a34826 100644 --- a/ui/views/App/Calls/Conference.qml +++ b/ui/views/App/Calls/Conference.qml @@ -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 } }