diff options
author | Christian Mollekopf <chrigi_1@fastmail.fm> | 2018-08-18 20:10:57 +0200 |
---|---|---|
committer | Christian Mollekopf <chrigi_1@fastmail.fm> | 2018-08-18 20:11:26 +0200 |
commit | c7956f98ab9cdff4767f11005c7c816a540ba3ab (patch) | |
tree | 8493fb7bb11867594635a0cdd9ed6e86f716c51e /views | |
parent | b51c5b583c131ca7301862b013aa59bfd07cadd2 (diff) | |
download | kube-c7956f98ab9cdff4767f11005c7c816a540ba3ab.tar.gz kube-c7956f98ab9cdff4767f11005c7c816a540ba3ab.zip |
Overlay positioning via the base View
This fixes the position when running the search view main.qml
Diffstat (limited to 'views')
-rw-r--r-- | views/search/qml/View.qml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/views/search/qml/View.qml b/views/search/qml/View.qml index d7b9a230..47cb18ef 100644 --- a/views/search/qml/View.qml +++ b/views/search/qml/View.qml | |||
@@ -34,10 +34,10 @@ Kube.View { | |||
34 | id: overlay | 34 | id: overlay |
35 | 35 | ||
36 | parent: ApplicationWindow.overlay | 36 | parent: ApplicationWindow.overlay |
37 | height: app.height | 37 | height: overlayArea.height |
38 | width: app.width - app.sidebarWidth | 38 | width: overlayArea.width |
39 | x: app.sidebarWidth | 39 | x: overlayArea.x |
40 | y: 0 | 40 | y: overlayArea.y |
41 | 41 | ||
42 | visible: root.visible && root.searchTerm == "" | 42 | visible: root.visible && root.searchTerm == "" |
43 | 43 | ||