From d14eda2ca0638da33cb6d6a9ad044bff69f14049 Mon Sep 17 00:00:00 2001 From: Tobias Fella Date: Wed, 11 Jun 2025 22:42:49 +0200 Subject: [PATCH] Hide avatar of inviting user when images are hidden by default While this reuses the setting for a slightly different purpose, in practice, these safety feature really belong together and it makes sense to have them both under a single option. In the future, we might want to rephrase the options description --- src/app/qml/InvitationView.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/qml/InvitationView.qml b/src/app/qml/InvitationView.qml index c2ff66d7a..45242d9b8 100644 --- a/src/app/qml/InvitationView.qml +++ b/src/app/qml/InvitationView.qml @@ -33,7 +33,7 @@ ColumnLayout { Layout.fillWidth: true name: root.invitingMember.displayName - source: root.invitingMember.avatarUrl + source: NeoChatConfig.hideImages ? undefined : root.invitingMember.avatarUrl color: root.invitingMember.color }