From 64f0ab733d11265c2f081eb8775836f919ad26df Mon Sep 17 00:00:00 2001 From: Sylvain Berfini Date: Thu, 8 Jun 2017 15:15:32 +0200 Subject: [PATCH] Vu meter for conference participants is fixed --- linphone-desktop/ui/views/App/Calls/Conference.qml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/linphone-desktop/ui/views/App/Calls/Conference.qml b/linphone-desktop/ui/views/App/Calls/Conference.qml index 5985eaedb..5aab9a103 100644 --- a/linphone-desktop/ui/views/App/Calls/Conference.qml +++ b/linphone-desktop/ui/views/App/Calls/Conference.qml @@ -161,8 +161,9 @@ Rectangle { username: contactDescription.username BusyIndicator { - width: parent.width / 2 - height: parent.height / 2 + color: CallStyle.header.busyIndicator.color + height: CallStyle.header.busyIndicator.height + width: CallStyle.header.busyIndicator.width anchors.horizontalCenter: parent.horizontalCenter anchors.verticalCenter: parent.verticalCenter @@ -182,6 +183,7 @@ Rectangle { Timer { interval: 50 repeat: true + running: true onTriggered: parent.value = $call.speakerVu }