diff --git a/Linphone/view/Page/Layout/Settings/CallSettingsLayout.qml b/Linphone/view/Page/Layout/Settings/CallSettingsLayout.qml index d22c5f0bb..b9df7737d 100644 --- a/Linphone/view/Page/Layout/Settings/CallSettingsLayout.qml +++ b/Linphone/view/Page/Layout/Settings/CallSettingsLayout.qml @@ -35,6 +35,7 @@ AbstractSettingsLayout { subTitleText: qsTr("Enregistrer tous les appels par défaut") propertyName: "automaticallyRecordCallsEnabled" propertyOwner: SettingsCpp + visible: !SettingsCpp.disableCallRecordings } } } diff --git a/Linphone/view/Page/Window/Call/CallsWindow.qml b/Linphone/view/Page/Window/Call/CallsWindow.qml index 35e7ec530..4dd9e44b0 100644 --- a/Linphone/view/Page/Window/Call/CallsWindow.qml +++ b/Linphone/view/Page/Window/Call/CallsWindow.qml @@ -1623,7 +1623,7 @@ AbstractWindow { } MenuButton { checkable: true - visible: mainWindow.call && !mainWindow.conference + visible: mainWindow.call && !mainWindow.conference && !SettingsCpp.disableCallRecordings enabled: mainWindow.call && mainWindow.call.core.recordable icon.source: AppIcons.recordFill icon.width: 32 * DefaultStyle.dp