From c8cba25a10823b0468e6ba7865c70be29dea651d Mon Sep 17 00:00:00 2001 From: Christian Mollekopf Date: Tue, 19 Dec 2017 12:47:09 +0100 Subject: Working Accounts main.qml --- components/accounts/qml/main.qml | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) diff --git a/components/accounts/qml/main.qml b/components/accounts/qml/main.qml index e15bca8f..5162cc3f 100644 --- a/components/accounts/qml/main.qml +++ b/components/accounts/qml/main.qml @@ -17,14 +17,23 @@ */ import QtQuick 2.7 -import QtQuick.Controls 2.0 as Controls2 +import QtQuick.Controls 2.0 +import QtQuick.Window 2.0 -Controls2.ApplicationWindow { +import org.kube.framework 1.0 as Kube + +ApplicationWindow { id: app - height: 900 - width: 1500 + height: Screen.desktopAvailableHeight * 0.8 + width: Screen.desktopAvailableWidth * 0.8 AccountWizard { visible: true + parent: ApplicationWindow.overlay + height: app.height + width: app.width + x: 0 + y: 0 + availableAccountPlugins: ["maildir", "imap", "kolabnow", "gmail"] } } -- cgit v1.2.3