diff options
-rw-r--r-- | applications/kube-mail/package/contents/ui/Composer.qml | 25 |
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 | ||