From 1e348836107230ff257042c9684142e88b443f45 Mon Sep 17 00:00:00 2001 From: Julien Wadel Date: Tue, 19 Aug 2025 19:33:29 +0200 Subject: [PATCH] Display call duration instead of conference duration. --- CHANGELOG.md | 1 + linphone-app/ui/views/App/Calls/Incall.qml | 3 +-- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c48ce2b9c..729ed30fc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -18,6 +18,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Download the correct version of openH264 (2.2.0) - Avoid to register the account while activating it. - Volumes settings based on hardware volumes. Remove software gains. +- Display call duration instead of conference duration. ### Added - Screen Sharing diff --git a/linphone-app/ui/views/App/Calls/Incall.qml b/linphone-app/ui/views/App/Calls/Incall.qml index 0ca9e0f62..9a5f789ab 100644 --- a/linphone-app/ui/views/App/Calls/Incall.qml +++ b/linphone-app/ui/views/App/Calls/Incall.qml @@ -214,8 +214,7 @@ Rectangle { running: true interval: 1000 repeat: true - onTriggered: if(conferenceModel) parent.elaspedTime = Utils.formatElapsedTime(conferenceModel.getElapsedSeconds()) - else parent.elaspedTime = Utils.formatElapsedTime(mainItem.callModel.duration) + onTriggered: parent.elaspedTime = Utils.formatElapsedTime(mainItem.callModel.duration) } property string elaspedTime horizontalAlignment: Qt.AlignHCenter