1
0
Fork 0
mirror of https://git.jami.net/savoirfairelinux/jami-client-qt.git synced 2025-09-10 12:03:18 +02:00

conference: show layout even in audio only

Change-Id: Icb22f3e8876daf284ea4825207e2f21ba1ebfbbf
This commit is contained in:
Aline Gondim Santos 2022-03-31 16:33:15 -04:00 committed by Sébastien Blin
parent 3debb09740
commit 0e53a71d33

View file

@ -182,7 +182,7 @@ Rectangle {
anchors.fill: parent
anchors.centerIn: parent
anchors.margins: 3
visible: !root.isAudioOnly && participantsLayer.count !== 0
visible: participantsLayer.count !== 0
onCountChanged: {
callOverlay.isConference = participantsLayer.count > 0
@ -295,7 +295,7 @@ Rectangle {
callOverlay.showOnHoldImage(isPaused)
root.isAudioOnly = isAudioOnly
callOverlay.showOnHoldImage(isPaused)
audioCallPageRectCentralRect.visible = !isPaused && root.isAudioOnly
audioCallPageRectCentralRect.visible = !isPaused && root.isAudioOnly && participantsLayer.count === 0
callOverlay.updateUI(isPaused, isAudioOnly,
isAudioMuted, isVideoMuted,
isSIP,
@ -304,7 +304,7 @@ Rectangle {
function onShowOnHoldLabel(isPaused) {
callOverlay.showOnHoldImage(isPaused)
audioCallPageRectCentralRect.visible = !isPaused && root.isAudioOnly
audioCallPageRectCentralRect.visible = !isPaused && root.isAudioOnly && participantsLayer.count === 0
}
function onRemoteRecordingChanged(label, state) {