diff options
author | Christian Mollekopf <chrigi_1@fastmail.fm> | 2018-04-04 14:55:30 +0200 |
---|---|---|
committer | Christian Mollekopf <chrigi_1@fastmail.fm> | 2018-04-04 14:55:30 +0200 |
commit | 97c12b25ef860a9cd888c38c31be36895f112c14 (patch) | |
tree | 7a726db841e194da7fca1d1730cd464fa70528b3 | |
parent | 32449cb4c7d7a37fa7fd54d5f7fc29bc7ecb2eff (diff) | |
download | kube-97c12b25ef860a9cd888c38c31be36895f112c14.tar.gz kube-97c12b25ef860a9cd888c38c31be36895f112c14.zip |
Try to fix the account wizard size on macos
I don't think the mapToGlobal trick works on mac os.
-rw-r--r-- | views/accounts/qml/View.qml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/views/accounts/qml/View.qml b/views/accounts/qml/View.qml index e25c32c9..5fe307a2 100644 --- a/views/accounts/qml/View.qml +++ b/views/accounts/qml/View.qml | |||
@@ -129,8 +129,8 @@ FocusScope { | |||
129 | 129 | ||
130 | parent: ApplicationWindow.overlay | 130 | parent: ApplicationWindow.overlay |
131 | height: root.height | 131 | height: root.height |
132 | width: root.width | 132 | width: app.width - app.sidebarWidth |
133 | x: root.mapToGlobal(root.x, root.y).x | 133 | x: app.sidebarWidth |
134 | y: 0 | 134 | y: 0 |
135 | 135 | ||
136 | availableAccountPlugins: root.availableAccountPlugins | 136 | availableAccountPlugins: root.availableAccountPlugins |