summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Bohlender <michael.bohlender@kdemail.net>2017-04-19 13:36:50 +0200
committerMichael Bohlender <michael.bohlender@kdemail.net>2017-04-19 13:36:50 +0200
commit0a94c74387c25962b74da251078b3763490e3697 (patch)
tree217e8d03672a1c71bbb01fddb18ca473487e9279
parent660cb1649a4463a2a808c160a7d141b2f31ac822 (diff)
downloadkube-0a94c74387c25962b74da251078b3763490e3697.tar.gz
kube-0a94c74387c25962b74da251078b3763490e3697.zip
use kube controls in outbox
-rw-r--r--framework/qml/Outbox.qml8
1 files changed, 4 insertions, 4 deletions
diff --git a/framework/qml/Outbox.qml b/framework/qml/Outbox.qml
index 07c0c6d2..43d0f102 100644
--- a/framework/qml/Outbox.qml
+++ b/framework/qml/Outbox.qml
@@ -54,7 +54,7 @@ Rectangle {
54 Row { 54 Row {
55 anchors.centerIn: parent 55 anchors.centerIn: parent
56 spacing: Kube.Units.smallSpacing 56 spacing: Kube.Units.smallSpacing
57 Text { 57 Kube.Label {
58 id: text 58 id: text
59 anchors.verticalCenter: parent.verticalCenter 59 anchors.verticalCenter: parent.verticalCenter
60 text: outboxModel.count > 0 ? "Pending (" + outboxModel.count + ")" : "Outbox" 60 text: outboxModel.count > 0 ? "Pending (" + outboxModel.count + ")" : "Outbox"
@@ -108,7 +108,7 @@ Rectangle {
108 border.color: Kube.Colors.backgroundColor 108 border.color: Kube.Colors.backgroundColor
109 border.width: 1 109 border.width: 1
110 110
111 Label { 111 Kube.Label {
112 id: subjectLabel 112 id: subjectLabel
113 anchors { 113 anchors {
114 verticalCenter: parent.verticalCenter 114 verticalCenter: parent.verticalCenter
@@ -165,7 +165,7 @@ Rectangle {
165 clip: true 165 clip: true
166 } 166 }
167 167
168 Button { 168 Kube.Button {
169 id: sendNowButton 169 id: sendNowButton
170 170
171 anchors { 171 anchors {
@@ -183,7 +183,7 @@ Rectangle {
183 } 183 }
184 } 184 }
185 185
186 Label { 186 Kube.Label {
187 anchors.centerIn: parent 187 anchors.centerIn: parent
188 188
189 visible: listView.count == 0 189 visible: listView.count == 0