summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Bohlender <michael.bohlender@kdemail.net>2016-03-08 17:17:48 +0100
committerMichael Bohlender <michael.bohlender@kdemail.net>2016-03-08 17:17:48 +0100
commitec1b70fa0d46e06fa91c60882d5e364bbfaec979 (patch)
tree3ce0b006c66afa860d28e160d15e5d7b088b4d59
parent7599906e9270498dd2674f51cd8b938bac0043a6 (diff)
downloadkube-ec1b70fa0d46e06fa91c60882d5e364bbfaec979.tar.gz
kube-ec1b70fa0d46e06fa91c60882d5e364bbfaec979.zip
add save as draft and attachment button as suggested by the VDG
-rw-r--r--applications/kube-mail/package/contents/ui/Composer.qml25
1 files changed, 25 insertions, 0 deletions
diff --git a/applications/kube-mail/package/contents/ui/Composer.qml b/applications/kube-mail/package/contents/ui/Composer.qml
index b049f33b..90a5e9e9 100644
--- a/applications/kube-mail/package/contents/ui/Composer.qml
+++ b/applications/kube-mail/package/contents/ui/Composer.qml
@@ -174,6 +174,31 @@ Item {
174 } 174 }
175 } 175 }
176 176
177 Item {
178
179 Layout.fillWidth: true
180
181 height: subject.height * 1.5
182
183 PlasmaComponents.Button {
184
185 anchors {
186 bottom: parent.bottom
187 }
188
189 text: "Save as Draft"
190 }
191
192 PlasmaComponents.Button {
193 text: "Attach"
194
195 anchors {
196 bottom: parent.bottom
197 right: parent.right
198 }
199 }
200 }
201
177 TextArea { 202 TextArea {
178 id: content 203 id: content
179 204