summaryrefslogtreecommitdiffstats
path: root/components/package/contents/ui/Outbox.qml
diff options
context:
space:
mode:
authorSandro Knauß <sknauss@kde.org>2016-10-11 16:19:01 +0200
committerSandro Knauß <sknauss@kde.org>2016-10-11 16:19:01 +0200
commit7d6ec8866c90918be94364e52bbdd4f3e53da915 (patch)
tree007cc6ded7358a7dcdf8a5a87202bb5378f60d93 /components/package/contents/ui/Outbox.qml
parent1974c19eadd497e355ac985a00d0571f3e6c7712 (diff)
parentfd3a6901f17f3dcfd446e531dd10c0eb61cf0b93 (diff)
downloadkube-7d6ec8866c90918be94364e52bbdd4f3e53da915.tar.gz
kube-7d6ec8866c90918be94364e52bbdd4f3e53da915.zip
Merge branch 'develop' into dev/mimetreeinterface
Diffstat (limited to 'components/package/contents/ui/Outbox.qml')
-rw-r--r--components/package/contents/ui/Outbox.qml7
1 files changed, 4 insertions, 3 deletions
diff --git a/components/package/contents/ui/Outbox.qml b/components/package/contents/ui/Outbox.qml
index 01501410..c7b1f7b0 100644
--- a/components/package/contents/ui/Outbox.qml
+++ b/components/package/contents/ui/Outbox.qml
@@ -39,7 +39,7 @@ ToolButton {
39 Rectangle { 39 Rectangle {
40 id: dialog 40 id: dialog
41 41
42 property int modelCount: 5 //FIXME replace with actual model 42 property int modelCount: listView.count
43 43
44 anchors { 44 anchors {
45 top: parent.bottom 45 top: parent.bottom
@@ -68,7 +68,8 @@ ToolButton {
68 ListView { 68 ListView {
69 id: listView 69 id: listView
70 70
71 model: 5 71 model: KubeFramework.OutboxModel {
72 }
72 73
73 delegate: Kirigami.AbstractListItem { 74 delegate: Kirigami.AbstractListItem {
74 75
@@ -76,7 +77,7 @@ ToolButton {
76 77
77 Kirigami.Label { 78 Kirigami.Label {
78 anchors.centerIn: parent 79 anchors.centerIn: parent
79 text: "Subjext subxetson" 80 text: model.subject
80 } 81 }
81 } 82 }
82 } 83 }