mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-05-07 05:13:05 +00:00
Remove recording button on conference (because of being not fully implemented by SDK)
This commit is contained in:
parent
341e5af04a
commit
bd2214c989
2 changed files with 3 additions and 1 deletions
|
|
@ -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: {
|
||||
|
|
|
|||
|
|
@ -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: {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue