summaryrefslogtreecommitdiffstats
path: root/components/mail/contents
diff options
context:
space:
mode:
Diffstat (limited to 'components/mail/contents')
-rw-r--r--components/mail/contents/ui/Mail.qml12
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 {