From 61dd1dac87ffabe91c70d88d5d5a25b0e3e3af93 Mon Sep 17 00:00:00 2001 From: Julien Wadel Date: Wed, 13 Jul 2022 22:32:19 +0200 Subject: [PATCH] Fix typo in call subject. --- linphone-app/ui/views/App/Calls/Incall.qml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/linphone-app/ui/views/App/Calls/Incall.qml b/linphone-app/ui/views/App/Calls/Incall.qml index fcf4276b5..35e949775 100644 --- a/linphone-app/ui/views/App/Calls/Incall.qml +++ b/linphone-app/ui/views/App/Calls/Incall.qml @@ -162,14 +162,16 @@ Rectangle { running: true interval: 1000 repeat: true - onTriggered: if(conferenceModel) parent.elaspedTime = ' - ' +Utils.formatElapsedTime(conferenceModel.getElapsedSeconds()) + onTriggered: if(conferenceModel) parent.elaspedTime = Utils.formatElapsedTime(conferenceModel.getElapsedSeconds()) else parent.elaspedTime = Utils.formatElapsedTime(conference.callModel.duration) } property string elaspedTime horizontalAlignment: Qt.AlignHCenter Layout.fillWidth: true text: conferenceModel - ? conferenceModel.subject+ elaspedTime + ? conferenceModel.subject + ? conferenceModel.subject+ ' - ' +elaspedTime + : elaspedTime : callModel ? elaspedTime : ''