summaryrefslogtreecommitdiffstats
path: root/views/people/qml/People.qml
diff options
context:
space:
mode:
Diffstat (limited to 'views/people/qml/People.qml')
-rw-r--r--views/people/qml/People.qml13
1 files changed, 6 insertions, 7 deletions
diff --git a/views/people/qml/People.qml b/views/people/qml/People.qml
index f90a4f56..8b35f5e7 100644
--- a/views/people/qml/People.qml
+++ b/views/people/qml/People.qml
@@ -18,7 +18,7 @@
18*/ 18*/
19 19
20import QtQuick 2.7 20import QtQuick 2.7
21import QtQuick.Controls 2.0 as Controls2 21import QtQuick.Controls 2
22import QtQuick.Layouts 1.1 22import QtQuick.Layouts 1.1
23 23
24import org.kube.framework 1.0 as Kube 24import org.kube.framework 1.0 as Kube
@@ -82,7 +82,7 @@ FocusScope {
82 } 82 }
83 } 83 }
84 84
85 Controls2.StackView { 85 StackView {
86 id: stack 86 id: stack
87 87
88 anchors { 88 anchors {
@@ -249,14 +249,13 @@ FocusScope {
249 Rectangle { 249 Rectangle {
250 id: personComposerRoot 250 id: personComposerRoot
251 251
252 Kube.ContactController {
253 id: contactController
254 contact: root.currentContact
255 }
256
257 color: Kube.Colors.viewBackgroundColor 252 color: Kube.Colors.viewBackgroundColor
258 253
259 PersonComposer { 254 PersonComposer {
255 contactController: Kube.ContactController {
256 id: contactController
257 contact: root.currentContact
258 }
260 } 259 }
261 260
262 Kube.PositiveButton { 261 Kube.PositiveButton {