diff --git a/Linphone/view/Control/Container/Call/CallGridLayout.qml b/Linphone/view/Control/Container/Call/CallGridLayout.qml index 8ad0e9388..434b62eb6 100644 --- a/Linphone/view/Control/Container/Call/CallGridLayout.qml +++ b/Linphone/view/Control/Container/Call/CallGridLayout.qml @@ -47,6 +47,7 @@ Mosaic { displayAll: false displayPresence: false participantDevice: avatarCell.currentDevice + secured: securityLevel === LinphoneEnums.SecurityLevel.EndToEndEncryptedAndVerified Component.onCompleted: console.log(qmlName + " is " +(call ? call.core.remoteAddress : currentDevice ? currentDevice.core.address : 'addr_NotDefined')) } } diff --git a/Linphone/view/Control/Display/Sticker.qml b/Linphone/view/Control/Display/Sticker.qml index 0a1dd10e1..75631afbc 100644 --- a/Linphone/view/Control/Display/Sticker.qml +++ b/Linphone/view/Control/Display/Sticker.qml @@ -25,6 +25,7 @@ Item { property ParticipantDeviceGui participantDevice: null property bool displayBorder : participantDevice && participantDevice.core.isSpeaking || false property alias displayPresence: avatar.displayPresence + property alias secured: avatar.secured property color color: DefaultStyle.grey_600 property real radius: Utils.getSizeWithScreenRatio(15) property bool remoteIsPaused: participantDevice @@ -115,7 +116,6 @@ Item { call: !mainItem.previewEnabled ? mainItem.call : null displayNameVal: mainItem.displayName securityBreach: mainItem.securityBreach ? mainItem.securityBreach : securityLevel === LinphoneEnums.SecurityLevel.Unsafe - secured: securityLevel === LinphoneEnums.SecurityLevel.EndToEndEncryptedAndVerified } ColumnLayout{ id: joiningView