diff options
Diffstat (limited to 'components')
-rw-r--r-- | components/package/contents/ui/People.qml | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/components/package/contents/ui/People.qml b/components/package/contents/ui/People.qml index 810ae0f4..13c98530 100644 --- a/components/package/contents/ui/People.qml +++ b/components/package/contents/ui/People.qml | |||
@@ -50,11 +50,9 @@ Popup { | |||
50 | width: parent.width* 0.8 | 50 | width: parent.width* 0.8 |
51 | 51 | ||
52 | color: "#27ae60" | 52 | color: "#27ae60" |
53 | |||
54 | clip: true | 53 | clip: true |
55 | 54 | ||
56 | Text { | 55 | Text { |
57 | |||
58 | anchors.centerIn: parent | 56 | anchors.centerIn: parent |
59 | 57 | ||
60 | clip: true | 58 | clip: true |
@@ -159,23 +157,25 @@ Popup { | |||
159 | 157 | ||
160 | width: parent.width | 158 | width: parent.width |
161 | 159 | ||
162 | Avatar { | 160 | RowLayout { |
163 | id: avatar | ||
164 | 161 | ||
162 | Avatar { | ||
163 | id: avatar | ||
165 | 164 | ||
166 | height: Kirigami.Units.gridUnit * 2.5 | 165 | height: Kirigami.Units.gridUnit * 2.5 |
167 | width: height | 166 | width: height |
168 | 167 | ||
169 | name: contactController.name | 168 | name: contactController.name |
170 | } | 169 | } |
171 | 170 | ||
172 | Text { | 171 | Text { |
173 | color: Kirigami.Theme.textColor | 172 | color: Kirigami.Theme.textColor |
174 | opacity: 0.8 | 173 | opacity: 0.8 |
175 | 174 | ||
176 | text: contactController.name | 175 | text: contactController.name |
177 | 176 | ||
178 | font.weight: Font.DemiBold | 177 | font.weight: Font.DemiBold |
178 | } | ||
179 | } | 179 | } |
180 | 180 | ||
181 | Text { | 181 | Text { |