From 1a1db6ac5633b4eb3c8d84b4582fa2f1fd5717dc Mon Sep 17 00:00:00 2001 From: Gaelle Braud Date: Mon, 16 Mar 2026 15:23:19 +0100 Subject: [PATCH] fix secured property in call sticker #LINQT-2438 --- Linphone/view/Control/Container/Call/CallGridLayout.qml | 1 + Linphone/view/Control/Display/Sticker.qml | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) 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