From 122d532bc3a5f2aa78b52e04f505ececb545c3a5 Mon Sep 17 00:00:00 2001 From: Julien Wadel Date: Sat, 5 Dec 2020 20:05:05 +0100 Subject: [PATCH] Feature : allow opening file for outgoing message. - Remove constraints if the message is outgoing : the file is already accessible, there is no need to ensure its presence. --- linphone-app/ui/modules/Linphone/Chat/FileMessage.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/linphone-app/ui/modules/Linphone/Chat/FileMessage.qml b/linphone-app/ui/modules/Linphone/Chat/FileMessage.qml index 158d5a4d1..77ce9c353 100644 --- a/linphone-app/ui/modules/Linphone/Chat/FileMessage.qml +++ b/linphone-app/ui/modules/Linphone/Chat/FileMessage.qml @@ -253,7 +253,7 @@ Row { } anchors.fill: parent - visible: (rectangle.isUploaded || rectangle.isRead) && !$chatEntry.isOutgoing + visible: ((rectangle.isUploaded || rectangle.isRead) && !$chatEntry.isOutgoing) || $chatEntry.isOutgoing onClicked: { if (Utils.pointIsInItem(this, thumbnailProvider, mouse)) {