summaryrefslogtreecommitdiffstats
path: root/components
diff options
context:
space:
mode:
Diffstat (limited to 'components')
-rw-r--r--components/kube/contents/ui/Kube.qml12
1 files changed, 9 insertions, 3 deletions
diff --git a/components/kube/contents/ui/Kube.qml b/components/kube/contents/ui/Kube.qml
index dc89e69b..b5eee31f 100644
--- a/components/kube/contents/ui/Kube.qml
+++ b/components/kube/contents/ui/Kube.qml
@@ -102,7 +102,15 @@ Controls2.ApplicationWindow {
102 bottom: mainContent.bottom 102 bottom: mainContent.bottom
103 } 103 }
104 width: Kube.Units.gridUnit + Kube.Units.largeSpacing 104 width: Kube.Units.gridUnit + Kube.Units.largeSpacing
105 color: Kube.Colors.statusbarColor 105 color: Kube.Colors.textColor
106
107 Rectangle {
108 anchors.right: parent.right
109 width: 1
110 height: parent.height
111 color: Kube.Colors.viewBackgroundColor
112 opacity: 0.3
113 }
106 114
107 Column { 115 Column {
108 anchors { 116 anchors {
@@ -171,8 +179,6 @@ Controls2.ApplicationWindow {
171 function openComposerWithMail(mail, openAsDraft) { 179 function openComposerWithMail(mail, openAsDraft) {
172 kubeViews.push({item: composerView, immediate: true, properties: {message: mail, loadAsDraft: openAsDraft}}) 180 kubeViews.push({item: composerView, immediate: true, properties: {message: mail, loadAsDraft: openAsDraft}})
173 } 181 }
174
175
176 //Not components so we maintain state 182 //Not components so we maintain state
177 MailView { 183 MailView {
178 id: mailView 184 id: mailView