diff options
Diffstat (limited to 'components/accounts/qml')
-rw-r--r-- | components/accounts/qml/main.qml | 17 |
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 | ||
19 | import QtQuick 2.7 | 19 | import QtQuick 2.7 |
20 | import QtQuick.Controls 2.0 as Controls2 | 20 | import QtQuick.Controls 2.0 |
21 | import QtQuick.Window 2.0 | ||
21 | 22 | ||
22 | Controls2.ApplicationWindow { | 23 | import org.kube.framework 1.0 as Kube |
24 | |||
25 | ApplicationWindow { | ||
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 | } |