diff options
Diffstat (limited to 'framework/qml/People.qml')
-rw-r--r-- | framework/qml/People.qml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/framework/qml/People.qml b/framework/qml/People.qml index aa23a78d..3445a5ba 100644 --- a/framework/qml/People.qml +++ b/framework/qml/People.qml | |||
@@ -149,13 +149,13 @@ Item { | |||
149 | } | 149 | } |
150 | } | 150 | } |
151 | 151 | ||
152 | Rectangle { | 152 | Kube.KubeImage { |
153 | id: avatarPlaceholder | 153 | id: avatarPlaceholder |
154 | 154 | ||
155 | height: parent.height | 155 | height: parent.height |
156 | width: height | 156 | width: height |
157 | 157 | ||
158 | color: "lightgrey" | 158 | imageData: model.imageData |
159 | } | 159 | } |
160 | 160 | ||
161 | Column { | 161 | Column { |
@@ -241,13 +241,13 @@ Item { | |||
241 | height: Kube.Units.gridUnit * 8 | 241 | height: Kube.Units.gridUnit * 8 |
242 | width: personPageRoot.width - Kube.Units.largeSpacing | 242 | width: personPageRoot.width - Kube.Units.largeSpacing |
243 | 243 | ||
244 | Rectangle { | 244 | Kube.KubeImage { |
245 | id: avatar | 245 | id: avatar |
246 | 246 | ||
247 | height: parent.height | 247 | height: parent.height |
248 | width: height | 248 | width: height |
249 | 249 | ||
250 | color: "lightgrey" | 250 | imageData: contactController.imageData |
251 | } | 251 | } |
252 | 252 | ||
253 | //TODO replace with Kube.Heading once it is there | 253 | //TODO replace with Kube.Heading once it is there |