From 11681e0a7495e5576b35304ef687af9873fd87ce Mon Sep 17 00:00:00 2001 From: Michael Bohlender Date: Thu, 8 Dec 2016 12:14:49 +0100 Subject: add background color for entire app --- components/mail/contents/ui/main.qml | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) 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 import QtQuick.Layouts 1.1 import QtQuick.Controls 2.0 as Controls2 - import org.kde.kirigami 1.0 as Kirigami import org.kube.framework.actions 1.0 as KubeAction @@ -137,6 +136,14 @@ Controls2.ApplicationWindow { } //END Shortcuts + //BEGIN background + Rectangle { + anchors.fill: parent + + color: Kirigami.Theme.backgroundColor + } + //END background + //BEGIN Main content SplitView { anchors { @@ -329,6 +336,8 @@ Controls2.ApplicationWindow { KubeAccounts.AccountWizard { id: accountWizard + // visible: true + height: app.height * 0.85 width: app.width * 0.85 -- cgit v1.2.3