mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-29 09:49:20 +00:00
Display snapshots button for 1-1, hide it while in conference.
This commit is contained in:
parent
39f72680ea
commit
9a8cab9e2b
2 changed files with 2 additions and 2 deletions
|
|
@ -269,7 +269,7 @@ Rectangle {
|
|||
isCustom: true
|
||||
backgroundRadius: width/2
|
||||
colorSet: IncallStyle.buttons.screenshot
|
||||
visible: SettingsModel.incallScreenshotEnabled && mainItem.isReady && mainItem.callModel && mainItem.callModel.snapshotEnabled
|
||||
visible: SettingsModel.incallScreenshotEnabled && mainItem.isReady && mainItem.callModel && (!mainItem.callModel.isConference || mainItem.callModel.snapshotEnabled)
|
||||
onClicked: mainItem.callModel.takeSnapshot()
|
||||
//: 'Take Snapshot' : Tooltip for takking snapshot.
|
||||
tooltipText: qsTr('incallSnapshotTooltip')
|
||||
|
|
|
|||
|
|
@ -236,7 +236,7 @@ Window {
|
|||
isCustom: true
|
||||
backgroundRadius: width/2
|
||||
colorSet: IncallStyle.buttons.screenshot
|
||||
visible: SettingsModel.incallScreenshotEnabled && conference.callModel && conference.callModel.snapshotEnabled
|
||||
visible: SettingsModel.incallScreenshotEnabled && conference.callModel && (!conference.callModel.isConference || mainItem.callModel.snapshotEnabled)
|
||||
onClicked: conference.callModel && conference.callModel.takeSnapshot()
|
||||
//: 'Take Snapshot' : Tooltip for takking snapshot.
|
||||
tooltipText: qsTr('incallSnapshotTooltip')
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue