diff options
author | Michael Bohlender <michael.bohlender@kdemail.net> | 2017-01-08 13:55:46 +0100 |
---|---|---|
committer | Michael Bohlender <michael.bohlender@kdemail.net> | 2017-01-08 13:55:46 +0100 |
commit | 3dcfaf700ebfee4cd0c8ce7134624b6ac0206122 (patch) | |
tree | 9ae9a2416300cfd475afdc624e889af2775c1371 | |
parent | b1db130fdd2308a3b990c3792898433d15a47311 (diff) | |
download | kube-3dcfaf700ebfee4cd0c8ce7134624b6ac0206122.tar.gz kube-3dcfaf700ebfee4cd0c8ce7134624b6ac0206122.zip |
mailview: reduce bottom margin
-rw-r--r-- | components/package/contents/ui/SingleMailView.qml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/components/package/contents/ui/SingleMailView.qml b/components/package/contents/ui/SingleMailView.qml index 632c8271..1f1bc181 100644 --- a/components/package/contents/ui/SingleMailView.qml +++ b/components/package/contents/ui/SingleMailView.qml | |||
@@ -79,7 +79,7 @@ Item { | |||
79 | Rectangle { | 79 | Rectangle { |
80 | id: sheet | 80 | id: sheet |
81 | anchors.centerIn: parent | 81 | anchors.centerIn: parent |
82 | implicitHeight: header.height + body.height + (Kirigami.Units.gridUnit * 2.5) * 2 + footer.height | 82 | implicitHeight: header.height + attachments.height + body.height + footer.height + Kirigami.Units.largeSpacing |
83 | width: parent.width - Kirigami.Units.gridUnit * 2 | 83 | width: parent.width - Kirigami.Units.gridUnit * 2 |
84 | 84 | ||
85 | color: Kirigami.Theme.viewBackgroundColor | 85 | color: Kirigami.Theme.viewBackgroundColor |
@@ -292,7 +292,7 @@ Item { | |||
292 | anchors{ | 292 | anchors{ |
293 | verticalCenter: parent.verticalCenter | 293 | verticalCenter: parent.verticalCenter |
294 | left: parent.left | 294 | left: parent.left |
295 | leftMargin: Kirigami.Units.gridUnit | 295 | leftMargin: Kirigami.Units.largeSpacing |
296 | } | 296 | } |
297 | 297 | ||
298 | KubeFramework.MailController { | 298 | KubeFramework.MailController { |
@@ -322,7 +322,7 @@ Item { | |||
322 | anchors{ | 322 | anchors{ |
323 | verticalCenter: parent.verticalCenter | 323 | verticalCenter: parent.verticalCenter |
324 | right: parent.right | 324 | right: parent.right |
325 | rightMargin: Kirigami.Units.gridUnit | 325 | rightMargin: Kirigami.Units.largeSpacing |
326 | } | 326 | } |
327 | 327 | ||
328 | KubeAction.Context { | 328 | KubeAction.Context { |