diff options
-rw-r--r-- | app/ContactsView.qml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/app/ContactsView.qml b/app/ContactsView.qml index 6a0382b..539a9e8 100644 --- a/app/ContactsView.qml +++ b/app/ContactsView.qml @@ -54,7 +54,9 @@ Item { anchors.leftMargin: 200 spacing: 100 Image { - source: './images/HMI_ContactScreen_ImageHolder-01.svg' + source: model.modelData.photo ? model.modelData.photo : './images/HMI_ContactScreen_ImageHolder-01.svg' + Layout.preferredWidth: 160 + Layout.preferredHeight: 160 } ColumnLayout { Label { |