From bd2214c989c1f1c23c5c8d13f831f4a0097ec55f Mon Sep 17 00:00:00 2001 From: Julien Wadel Date: Wed, 11 Jan 2023 15:52:11 +0100 Subject: [PATCH] Remove recording button on conference (because of being not fully implemented by SDK) --- linphone-app/ui/views/App/Calls/Incall.qml | 3 ++- linphone-app/ui/views/App/Calls/IncallFullscreen.qml | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/linphone-app/ui/views/App/Calls/Incall.qml b/linphone-app/ui/views/App/Calls/Incall.qml index e8442895f..487ff99b3 100644 --- a/linphone-app/ui/views/App/Calls/Incall.qml +++ b/linphone-app/ui/views/App/Calls/Incall.qml @@ -256,7 +256,8 @@ Rectangle { backgroundRadius: width/2 colorSet: IncallStyle.buttons.record property CallModel callModel: mainItem.callModel - visible: SettingsModel.callRecorderEnabled && callModel && (callModel.recording || mainItem.isReady) + visible: SettingsModel.callRecorderEnabled && callModel && (callModel.recording || mainItem.isReady) + && !mainItem.conferenceModel // Remove recording for conference (not fully implemented) toggled: callModel.recording onClicked: { diff --git a/linphone-app/ui/views/App/Calls/IncallFullscreen.qml b/linphone-app/ui/views/App/Calls/IncallFullscreen.qml index d5ddd951f..29fe35f4a 100644 --- a/linphone-app/ui/views/App/Calls/IncallFullscreen.qml +++ b/linphone-app/ui/views/App/Calls/IncallFullscreen.qml @@ -225,6 +225,7 @@ Window { colorSet: IncallStyle.buttons.record property CallModel callModel: conference.callModel visible: SettingsModel.callRecorderEnabled && callModel + && !conference.conferenceModel // Remove recording for conference (not fully implemented) toggled: callModel && callModel.recording onClicked: {