mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-22 11:00:48 +03:00
Use better visible check
This commit is contained in:
parent
094ddb48a2
commit
bb8dbf2c2e
1 changed files with 1 additions and 1 deletions
|
@ -43,8 +43,8 @@ Rectangle {
|
|||
Image {
|
||||
id: identicon
|
||||
anchors.fill: parent
|
||||
visible: img.status != Image.Ready && Settings.useIdenticon
|
||||
layer.enabled: true
|
||||
visible: Settings.useIdenticon && img.status != Image.Ready
|
||||
source: Settings.useIdenticon ? ("image://jdenticon/" + (userid !== "" ? userid : roomid) + "?radius=" + (Settings.avatarCircles ? 100 : 25)) : ""
|
||||
|
||||
MouseArea {
|
||||
|
|
Loading…
Reference in a new issue