diff options
author | Christian Mollekopf <chrigi_1@fastmail.fm> | 2017-12-19 12:47:09 +0100 |
---|---|---|
committer | Christian Mollekopf <chrigi_1@fastmail.fm> | 2017-12-19 12:47:09 +0100 |
commit | c8cba25a10823b0468e6ba7865c70be29dea651d (patch) | |
tree | 32766103620afad4d0ebcf5d4591312634e45370 /components | |
parent | abb569c99602febfec6d5822b26d36eb1af4a83f (diff) | |
download | kube-c8cba25a10823b0468e6ba7865c70be29dea651d.tar.gz kube-c8cba25a10823b0468e6ba7865c70be29dea651d.zip |
Working Accounts main.qml
Diffstat (limited to 'components')
-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 | } |