summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--framework/qml/Messages.qml1
-rw-r--r--framework/qml/Outbox.qml5
2 files changed, 5 insertions, 1 deletions
diff --git a/framework/qml/Messages.qml b/framework/qml/Messages.qml
index 597afc0c..18db51ff 100644
--- a/framework/qml/Messages.qml
+++ b/framework/qml/Messages.qml
@@ -46,6 +46,7 @@ Item {
46 property string reply: "reply" 46 property string reply: "reply"
47 property string edit: "edit" 47 property string edit: "edit"
48 property string compose: "compose" 48 property string compose: "compose"
49 property string sendOutbox: "sendOutbox"
49 50
50 property string componentDone: "done" 51 property string componentDone: "done"
51} 52}
diff --git a/framework/qml/Outbox.qml b/framework/qml/Outbox.qml
index a9a1a1d6..215fc3a2 100644
--- a/framework/qml/Outbox.qml
+++ b/framework/qml/Outbox.qml
@@ -158,7 +158,10 @@ Kube.IconButton {
158 visible: listView.count != 0 158 visible: listView.count != 0
159 159
160 text: qsTr("Send now") 160 text: qsTr("Send now")
161 onClicked: Kube.Fabric.postMessage(Kube.Messages.sendOutbox, {}) 161 onClicked: {
162 Kube.Fabric.postMessage(Kube.Messages.sendOutbox, {})
163 dialog.close()
164 }
162 } 165 }
163 166
164 Kube.Label { 167 Kube.Label {