mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-31 10:59:23 +00:00
Fix typo in call subject.
This commit is contained in:
parent
6500027dd1
commit
61dd1dac87
1 changed files with 4 additions and 2 deletions
|
|
@ -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
|
||||
: ''
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue