diff options
author | Michael Bohlender <michael.bohlender@kdemail.net> | 2016-12-08 12:14:49 +0100 |
---|---|---|
committer | Michael Bohlender <michael.bohlender@kdemail.net> | 2016-12-08 12:14:49 +0100 |
commit | 11681e0a7495e5576b35304ef687af9873fd87ce (patch) | |
tree | 3caaa2b932b69626599613f7f1de6d5a76545f92 /components | |
parent | 72dd8e1c6222dac9176dd67c974a9c34aee01c41 (diff) | |
download | kube-11681e0a7495e5576b35304ef687af9873fd87ce.tar.gz kube-11681e0a7495e5576b35304ef687af9873fd87ce.zip |
add background color for entire app
Diffstat (limited to 'components')
-rw-r--r-- | components/mail/contents/ui/main.qml | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/components/mail/contents/ui/main.qml b/components/mail/contents/ui/main.qml index 67bc2ce3..cf5cfd6a 100644 --- a/components/mail/contents/ui/main.qml +++ b/components/mail/contents/ui/main.qml | |||
@@ -22,7 +22,6 @@ import QtQuick.Controls 1.3 | |||
22 | import QtQuick.Layouts 1.1 | 22 | import QtQuick.Layouts 1.1 |
23 | 23 | ||
24 | import QtQuick.Controls 2.0 as Controls2 | 24 | import QtQuick.Controls 2.0 as Controls2 |
25 | |||
26 | import org.kde.kirigami 1.0 as Kirigami | 25 | import org.kde.kirigami 1.0 as Kirigami |
27 | 26 | ||
28 | import org.kube.framework.actions 1.0 as KubeAction | 27 | import org.kube.framework.actions 1.0 as KubeAction |
@@ -137,6 +136,14 @@ Controls2.ApplicationWindow { | |||
137 | } | 136 | } |
138 | //END Shortcuts | 137 | //END Shortcuts |
139 | 138 | ||
139 | //BEGIN background | ||
140 | Rectangle { | ||
141 | anchors.fill: parent | ||
142 | |||
143 | color: Kirigami.Theme.backgroundColor | ||
144 | } | ||
145 | //END background | ||
146 | |||
140 | //BEGIN Main content | 147 | //BEGIN Main content |
141 | SplitView { | 148 | SplitView { |
142 | anchors { | 149 | anchors { |
@@ -329,6 +336,8 @@ Controls2.ApplicationWindow { | |||
329 | KubeAccounts.AccountWizard { | 336 | KubeAccounts.AccountWizard { |
330 | id: accountWizard | 337 | id: accountWizard |
331 | 338 | ||
339 | // visible: true | ||
340 | |||
332 | height: app.height * 0.85 | 341 | height: app.height * 0.85 |
333 | width: app.width * 0.85 | 342 | width: app.width * 0.85 |
334 | 343 | ||