summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--components/accounts/qml/main.qml17
1 files 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 @@
17 */ 17 */
18 18
19import QtQuick 2.7 19import QtQuick 2.7
20import QtQuick.Controls 2.0 as Controls2 20import QtQuick.Controls 2.0
21import QtQuick.Window 2.0
21 22
22Controls2.ApplicationWindow { 23import org.kube.framework 1.0 as Kube
24
25ApplicationWindow {
23 id: app 26 id: app
24 height: 900 27 height: Screen.desktopAvailableHeight * 0.8
25 width: 1500 28 width: Screen.desktopAvailableWidth * 0.8
26 29
27 AccountWizard { 30 AccountWizard {
28 visible: true 31 visible: true
32 parent: ApplicationWindow.overlay
33 height: app.height
34 width: app.width
35 x: 0
36 y: 0
37 availableAccountPlugins: ["maildir", "imap", "kolabnow", "gmail"]
29 } 38 }
30} 39}