Skip to content
Snippets Groups Projects
Commit 0e53a71d authored by Aline Gondim Santos's avatar Aline Gondim Santos Committed by Sébastien Blin
Browse files

conference: show layout even in audio only

Change-Id: Icb22f3e8876daf284ea4825207e2f21ba1ebfbbf
parent 3debb097
No related branches found
No related tags found
No related merge requests found
......@@ -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) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment