summaryrefslogtreecommitdiffstats
path: root/views/people/qml/PersonComposer.qml
diff options
context:
space:
mode:
authorMichael Bohlender <michael.bohlender@kdemail.net>2018-03-02 11:50:52 +0100
committerMichael Bohlender <michael.bohlender@kdemail.net>2018-03-02 11:50:52 +0100
commitf0b2dd171acd7c809325134f7c99a9cf03a214db (patch)
treecf9353ee26fad94be4da71845f87d0ab8d3aefeb /views/people/qml/PersonComposer.qml
parentcbcb2e305fb02853234e5394c4202b1150026d81 (diff)
downloadkube-f0b2dd171acd7c809325134f7c99a9cf03a214db.tar.gz
kube-f0b2dd171acd7c809325134f7c99a9cf03a214db.zip
actually load the contact when editing
Diffstat (limited to 'views/people/qml/PersonComposer.qml')
-rw-r--r--views/people/qml/PersonComposer.qml4
1 files changed, 2 insertions, 2 deletions
diff --git a/views/people/qml/PersonComposer.qml b/views/people/qml/PersonComposer.qml
index e3140953..c85360a9 100644
--- a/views/people/qml/PersonComposer.qml
+++ b/views/people/qml/PersonComposer.qml
@@ -175,7 +175,7 @@ Flickable {
175 delegate: Row { 175 delegate: Row {
176 spacing: Kube.Units.smallSpacing 176 spacing: Kube.Units.smallSpacing
177 Kube.Label { text: qsTr("(main)") } 177 Kube.Label { text: qsTr("(main)") }
178 Kube.TextField { text: modelData ; color: Kube.Colors.highlightColor } 178 Kube.TextField { width: Kube.Units.gridUnit * 15; text: modelData ; color: Kube.Colors.highlightColor }
179 Item { width: Kube.Units.smallSpacing; height: 1 } 179 Item { width: Kube.Units.smallSpacing; height: 1 }
180 } 180 }
181 } 181 }
@@ -205,7 +205,7 @@ Flickable {
205 Row { 205 Row {
206 spacing: Kube.Units.smallSpacing 206 spacing: Kube.Units.smallSpacing
207 Kube.Label { text: qsTr("(main)") } 207 Kube.Label { text: qsTr("(main)") }
208 Kube.TextField { text: modelData ; opacity: 0.6 } 208 Kube.TextField { width: Kube.Units.gridUnit * 15; text: modelData}
209 Item { width: Kube.Units.smallSpacing; height: 1 } 209 Item { width: Kube.Units.smallSpacing; height: 1 }
210 } 210 }
211 } 211 }