summary refs log tree commit diff
path: root/resources/qml/Avatar.qml
diff options
context:
space:
mode:
authorLoren Burkholder <computersemiexpert@outlook.com>2021-01-25 20:15:40 -0500
committerLoren Burkholder <computersemiexpert@outlook.com>2021-09-11 19:35:31 -0400
commit0e931456ee8811f58c91311a77ebf4b039d26fe8 (patch)
treed7d85d93a234d9dab6c59f5007ce04dee88aae34 /resources/qml/Avatar.qml
parentFix braces; make lint (diff)
downloadnheko-0e931456ee8811f58c91311a77ebf4b039d26fe8.tar.xz
Only set identicon source if used
Diffstat (limited to '')
-rw-r--r--resources/qml/Avatar.qml2
1 files changed, 1 insertions, 1 deletions
diff --git a/resources/qml/Avatar.qml b/resources/qml/Avatar.qml

index 7bbdeba3..91245d52 100644 --- a/resources/qml/Avatar.qml +++ b/resources/qml/Avatar.qml
@@ -43,7 +43,7 @@ Rectangle { id: identicon anchors.fill: parent visible: img.status != Image.Ready && Settings.useIdenticon - source: "image://jdenticon/" + userid + source: Settings.useIdenticon ? "image://jdenticon/" + userid : "" } Image {