diff options
-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 | ||