diff options
author | Michael Bohlender <michael.bohlender@kdemail.net> | 2017-03-09 11:19:05 +0100 |
---|---|---|
committer | Michael Bohlender <michael.bohlender@kdemail.net> | 2017-03-09 11:19:05 +0100 |
commit | ab098168760405dd4804331a6b8d36c62973c6c9 (patch) | |
tree | dcf6d4435724e2a0a0a999f37cf963b9d82f96ba /components/mail/contents | |
parent | 892b92bc091787a9efc73c77d42fe7d355b16d97 (diff) | |
download | kube-ab098168760405dd4804331a6b8d36c62973c6c9.tar.gz kube-ab098168760405dd4804331a6b8d36c62973c6c9.zip |
bring back outbox
Diffstat (limited to 'components/mail/contents')
-rw-r--r-- | components/mail/contents/ui/Mail.qml | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/components/mail/contents/ui/Mail.qml b/components/mail/contents/ui/Mail.qml index c400d8f3..ff0e8c5c 100644 --- a/components/mail/contents/ui/Mail.qml +++ b/components/mail/contents/ui/Mail.qml | |||
@@ -252,7 +252,7 @@ Controls2.ApplicationWindow { | |||
252 | anchors { | 252 | anchors { |
253 | top: accountName.bottom | 253 | top: accountName.bottom |
254 | topMargin: Kirigami.Units.smallSpacing | 254 | topMargin: Kirigami.Units.smallSpacing |
255 | bottom: parent.bottom | 255 | bottom: outbox.top |
256 | left: parent.left | 256 | left: parent.left |
257 | right: parent.right | 257 | right: parent.right |
258 | } | 258 | } |
@@ -260,6 +260,16 @@ Controls2.ApplicationWindow { | |||
260 | focus: true | 260 | focus: true |
261 | accountId: accountSwitcher.accountId | 261 | accountId: accountSwitcher.accountId |
262 | } | 262 | } |
263 | |||
264 | KubeComponents.Outbox { | ||
265 | id: outbox | ||
266 | |||
267 | anchors { | ||
268 | bottom: parent.bottom | ||
269 | left: parent.left | ||
270 | right: parent.right | ||
271 | } | ||
272 | } | ||
263 | } | 273 | } |
264 | 274 | ||
265 | KubeComponents.MailListView { | 275 | KubeComponents.MailListView { |