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: {