summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian Mollekopf <chrigi_1@fastmail.fm>2018-08-18 21:06:43 +0200
committerChristian Mollekopf <chrigi_1@fastmail.fm>2018-08-18 21:06:43 +0200
commitdf5b77a16aedbadf801a1d1eaab48f62af81fce3 (patch)
treee25f943778bf104fcb767f17c3a9f850a60cfe1d
parentc7956f98ab9cdff4767f11005c7c816a540ba3ab (diff)
downloadkube-df5b77a16aedbadf801a1d1eaab48f62af81fce3.tar.gz
kube-df5b77a16aedbadf801a1d1eaab48f62af81fce3.zip
Hide the sidebar of the search view
-rw-r--r--views/search/qml/View.qml7
1 files changed, 4 insertions, 3 deletions
diff --git a/views/search/qml/View.qml b/views/search/qml/View.qml
index 47cb18ef..5eea85ae 100644
--- a/views/search/qml/View.qml
+++ b/views/search/qml/View.qml
@@ -29,10 +29,8 @@ Kube.View {
29 id: root 29 id: root
30 property string searchTerm: "" 30 property string searchTerm: ""
31 31
32 32 //Initial search-box overlay
33 Rectangle { 33 Rectangle {
34 id: overlay
35
36 parent: ApplicationWindow.overlay 34 parent: ApplicationWindow.overlay
37 height: overlayArea.height 35 height: overlayArea.height
38 width: overlayArea.width 36 width: overlayArea.width
@@ -67,7 +65,10 @@ Kube.View {
67 65
68 RowLayout { 66 RowLayout {
69 spacing: 0 67 spacing: 0
68 //Sidebar
70 Rectangle { 69 Rectangle {
70 //It contains nothing useful right now
71 visible: false
71 Layout.fillHeight: true 72 Layout.fillHeight: true
72 width: Kube.Units.gridUnit * 10 73 width: Kube.Units.gridUnit * 10
73 color: Kube.Colors.darkBackgroundColor 74 color: Kube.Colors.darkBackgroundColor