Commit 63519324 authored by Ronan Abhamon's avatar Ronan Abhamon

fix(ui/views/App/MainWindow/ContactEdit): display missing avatar image in...

fix(ui/views/App/MainWindow/ContactEdit): display missing avatar image in edition mode if no photo available
parent 345a3c6f
...@@ -146,7 +146,7 @@ ColumnLayout { ...@@ -146,7 +146,7 @@ ColumnLayout {
anchors.fill: parent anchors.fill: parent
image: _vcard.avatar image: _vcard.avatar
username: _vcard.username username: _vcard.username
visible: isLoaded() && (!parent.hovered || !_edition) visible: (isLoaded() && !parent.hovered) || !_edition
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment