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:
parent
3debb09740
commit
0e53a71d33
1 changed files with 3 additions and 3 deletions
|
@ -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) {
|
||||
|
|
Loading…
Add table
Reference in a new issue