From bce687d3d899391f93e1b1a67544090abaff1ca5 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 511ade285..987502f66 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 27d63c4ce..4dbc954ff 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: {