mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-22 19:08:58 +03:00
Only set identicon source if used
This commit is contained in:
parent
4e4a9c6e0c
commit
0e931456ee
1 changed files with 1 additions and 1 deletions
|
@ -43,7 +43,7 @@ Rectangle {
|
||||||
id: identicon
|
id: identicon
|
||||||
anchors.fill: parent
|
anchors.fill: parent
|
||||||
visible: img.status != Image.Ready && Settings.useIdenticon
|
visible: img.status != Image.Ready && Settings.useIdenticon
|
||||||
source: "image://jdenticon/" + userid
|
source: Settings.useIdenticon ? "image://jdenticon/" + userid : ""
|
||||||
}
|
}
|
||||||
|
|
||||||
Image {
|
Image {
|
||||||
|
|
Loading…
Reference in a new issue