diff options
author | Christian Mollekopf <chrigi_1@fastmail.fm> | 2017-12-12 10:47:49 +0100 |
---|---|---|
committer | Christian Mollekopf <chrigi_1@fastmail.fm> | 2017-12-12 10:47:49 +0100 |
commit | c7e719422112e86c6bd0cd7c133e59fff2a32607 (patch) | |
tree | 7e67417f3255a49dd8544c5095967ef6b52027bb /components/mailviewer/contents/ui/MailDataModel.qml | |
parent | 930bd5c974c6e0e276a6b7e9f751fa0d2bdec0ac (diff) | |
download | kube-c7e719422112e86c6bd0cd7c133e59fff2a32607.tar.gz kube-c7e719422112e86c6bd0cd7c133e59fff2a32607.zip |
Avoid conflicts of the signed/encrypted visualizaition with mailparts
Diffstat (limited to 'components/mailviewer/contents/ui/MailDataModel.qml')
-rw-r--r-- | components/mailviewer/contents/ui/MailDataModel.qml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/components/mailviewer/contents/ui/MailDataModel.qml b/components/mailviewer/contents/ui/MailDataModel.qml index 029e8707..ec7f8e74 100644 --- a/components/mailviewer/contents/ui/MailDataModel.qml +++ b/components/mailviewer/contents/ui/MailDataModel.qml | |||
@@ -71,7 +71,7 @@ DelegateModel { | |||
71 | 71 | ||
72 | Column { | 72 | Column { |
73 | id: buttons | 73 | id: buttons |
74 | anchors.right: parent.left | 74 | anchors.left: parent.left |
75 | anchors.top: parent.top | 75 | anchors.top: parent.top |
76 | anchors.rightMargin: Kube.Units.smallSpacing | 76 | anchors.rightMargin: Kube.Units.smallSpacing |
77 | spacing: Kube.Units.smallSpacing | 77 | spacing: Kube.Units.smallSpacing |
@@ -107,8 +107,7 @@ DelegateModel { | |||
107 | anchors.topMargin: Kube.Units.smallSpacing | 107 | anchors.topMargin: Kube.Units.smallSpacing |
108 | anchors.top: buttons.bottom | 108 | anchors.top: buttons.bottom |
109 | anchors.bottom: partLoader.bottom | 109 | anchors.bottom: partLoader.bottom |
110 | anchors.right: parent.left | 110 | anchors.right: buttons.right |
111 | anchors.rightMargin: Kube.Units.smallSpacing | ||
112 | width: Kube.Units.smallSpacing | 111 | width: Kube.Units.smallSpacing |
113 | color: getColor(model.securityLevel) | 112 | color: getColor(model.securityLevel) |
114 | opacity: 0.5 | 113 | opacity: 0.5 |
@@ -118,7 +117,8 @@ DelegateModel { | |||
118 | id: partLoader | 117 | id: partLoader |
119 | anchors { | 118 | anchors { |
120 | top: parent.top | 119 | top: parent.top |
121 | left: parent.left | 120 | left: buttons.right |
121 | leftMargin: Kube.Units.smallSpacing | ||
122 | right: parent.right | 122 | right: parent.right |
123 | } | 123 | } |
124 | height: item ? item.contentHeight : 0 | 124 | height: item ? item.contentHeight : 0 |