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 { ...@@ -182,7 +182,7 @@ Rectangle {
anchors.fill: parent anchors.fill: parent
anchors.centerIn: parent anchors.centerIn: parent
anchors.margins: 3 anchors.margins: 3
visible: !root.isAudioOnly && participantsLayer.count !== 0 visible: participantsLayer.count !== 0
onCountChanged: { onCountChanged: {
callOverlay.isConference = participantsLayer.count > 0 callOverlay.isConference = participantsLayer.count > 0
...@@ -295,7 +295,7 @@ Rectangle { ...@@ -295,7 +295,7 @@ Rectangle {
callOverlay.showOnHoldImage(isPaused) callOverlay.showOnHoldImage(isPaused)
root.isAudioOnly = isAudioOnly root.isAudioOnly = isAudioOnly
callOverlay.showOnHoldImage(isPaused) callOverlay.showOnHoldImage(isPaused)
audioCallPageRectCentralRect.visible = !isPaused && root.isAudioOnly audioCallPageRectCentralRect.visible = !isPaused && root.isAudioOnly && participantsLayer.count === 0
callOverlay.updateUI(isPaused, isAudioOnly, callOverlay.updateUI(isPaused, isAudioOnly,
isAudioMuted, isVideoMuted, isAudioMuted, isVideoMuted,
isSIP, isSIP,
...@@ -304,7 +304,7 @@ Rectangle { ...@@ -304,7 +304,7 @@ Rectangle {
function onShowOnHoldLabel(isPaused) { function onShowOnHoldLabel(isPaused) {
callOverlay.showOnHoldImage(isPaused) callOverlay.showOnHoldImage(isPaused)
audioCallPageRectCentralRect.visible = !isPaused && root.isAudioOnly audioCallPageRectCentralRect.visible = !isPaused && root.isAudioOnly && participantsLayer.count === 0
} }
function onRemoteRecordingChanged(label, state) { function onRemoteRecordingChanged(label, state) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment