Display call duration instead of conference duration.

This commit is contained in:
Julien Wadel 2025-08-19 19:33:29 +02:00
parent 0bc78c24ab
commit 1e34883610
2 changed files with 2 additions and 2 deletions

View file

@ -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

View file

@ -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