summaryrefslogtreecommitdiffstats
path: root/views/people/qml/People.qml
diff options
context:
space:
mode:
authorChristian Mollekopf <chrigi_1@fastmail.fm>2018-07-13 10:39:20 +0200
committerChristian Mollekopf <chrigi_1@fastmail.fm>2018-07-13 10:39:20 +0200
commita3307e549d5c8ad755e4b3fbac5c47ea13e408f8 (patch)
tree3c2b53a13602e03dc89134c0ae02eee5e5905f41 /views/people/qml/People.qml
parentfed73fe5ba7212fd886e0c6a06cefc684a3a7b88 (diff)
downloadkube-a3307e549d5c8ad755e4b3fbac5c47ea13e408f8.tar.gz
kube-a3307e549d5c8ad755e4b3fbac5c47ea13e408f8.zip
Composer cleanup
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 {