From c7b6c5dbac39705d37f6e155dc9ca90efa15fb06 Mon Sep 17 00:00:00 2001 From: Pascal Precht Date: Fri, 4 Dec 2020 11:28:55 +0100 Subject: [PATCH] chore(StatusIdenticon): use identicon source when set explicitly --- ui/shared/status/StatusIdenticon.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/shared/status/StatusIdenticon.qml b/ui/shared/status/StatusIdenticon.qml index 9bbb98a6a0..d9fa271518 100644 --- a/ui/shared/status/StatusIdenticon.qml +++ b/ui/shared/status/StatusIdenticon.qml @@ -14,7 +14,7 @@ Item { height: 40 Loader { - sourceComponent: root.chatType == Constants.chatTypeOneToOne ? imageIdenticon : letterIdenticon + sourceComponent: root.chatType == Constants.chatTypeOneToOne || !!root.identicon ? imageIdenticon : letterIdenticon anchors.fill: parent }