mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-27 08:49:19 +00:00
Hide call recording options if disableCallRecordings is set
This commit is contained in:
parent
094f265a9f
commit
7b19b79156
2 changed files with 2 additions and 1 deletions
|
|
@ -35,6 +35,7 @@ AbstractSettingsLayout {
|
|||
subTitleText: qsTr("Enregistrer tous les appels par défaut")
|
||||
propertyName: "automaticallyRecordCallsEnabled"
|
||||
propertyOwner: SettingsCpp
|
||||
visible: !SettingsCpp.disableCallRecordings
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue