From f1fb447fa39e5064377c9996da225cd92576823f Mon Sep 17 00:00:00 2001 From: Gaelle Braud Date: Thu, 26 Dec 2024 18:16:01 +0100 Subject: [PATCH] force active speaker if not in conf --- Linphone/view/Control/Container/Call/CallLayout.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Linphone/view/Control/Container/Call/CallLayout.qml b/Linphone/view/Control/Container/Call/CallLayout.qml index 4c9801f7a..b12fc2729 100644 --- a/Linphone/view/Control/Container/Call/CallLayout.qml +++ b/Linphone/view/Control/Container/Call/CallLayout.qml @@ -29,7 +29,7 @@ Item { function setConferenceLayout() { callLayout.sourceComponent = undefined // unload old view before opening the new view to avoid conflicts in Video UI. - callLayout.sourceComponent = mainItem.conferenceLayout == LinphoneEnums.ConferenceLayout.ActiveSpeaker + callLayout.sourceComponent = !conference || mainItem.conferenceLayout == LinphoneEnums.ConferenceLayout.ActiveSpeaker ? activeSpeakerComponent : gridComponent }