diff options
author | Christian Mollekopf <chrigi_1@fastmail.fm> | 2018-07-06 22:48:15 +0200 |
---|---|---|
committer | Christian Mollekopf <chrigi_1@fastmail.fm> | 2018-07-12 16:08:21 +0200 |
commit | 64ee4321cf6b9d85ac1c8f10b536bdff8fb8830a (patch) | |
tree | bac145c8ce586c483b41d2f188546d5a13b7e2a9 | |
parent | 65ac54df1caad2cff66c98a720c888d4f37aad36 (diff) | |
download | kube-64ee4321cf6b9d85ac1c8f10b536bdff8fb8830a.tar.gz kube-64ee4321cf6b9d85ac1c8f10b536bdff8fb8830a.zip |
Avoid relying on hardcoded id's if we don't have to.
-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 00fa845f..86a679b8 100644 --- a/views/accounts/qml/View.qml +++ b/views/accounts/qml/View.qml | |||
@@ -141,8 +141,8 @@ FocusScope { | |||
141 | 141 | ||
142 | parent: ApplicationWindow.overlay | 142 | parent: ApplicationWindow.overlay |
143 | height: root.height | 143 | height: root.height |
144 | width: app.width - app.sidebarWidth | 144 | width: ApplicationWindow.window.width - ApplicationWindow.window.sidebarWidth |
145 | x: app.sidebarWidth | 145 | x: ApplicationWindow.window.sidebarWidth |
146 | y: 0 | 146 | y: 0 |
147 | 147 | ||
148 | availableAccountPlugins: root.availableAccountPlugins | 148 | availableAccountPlugins: root.availableAccountPlugins |