diff options
-rw-r--r-- | framework/qml/Outbox.qml | 8 |
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 |