Remove recording button on conference (because of being not fully implemented by SDK)

This commit is contained in:
Julien Wadel 2023-01-11 15:52:11 +01:00
parent b490eee909
commit bce687d3d8
2 changed files with 3 additions and 1 deletions

View file

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

View file

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