summaryrefslogtreecommitdiffstats
path: root/components
diff options
context:
space:
mode:
authorMichael Bohlender <michael.bohlender@kdemail.net>2017-04-17 11:50:45 +0200
committerMichael Bohlender <michael.bohlender@kdemail.net>2017-04-17 11:50:45 +0200
commit33a9383df55a39b2ea2322808bb38fbed5db33b1 (patch)
tree8f28a862554ab038c49ea97986d71b8e99c95dc3 /components
parentec48ea0cf01d306c0a9283e485f8c37d7d4d1ebd (diff)
downloadkube-33a9383df55a39b2ea2322808bb38fbed5db33b1.tar.gz
kube-33a9383df55a39b2ea2322808bb38fbed5db33b1.zip
remove filter bar, allow filter through the global search
Diffstat (limited to 'components')
-rw-r--r--components/kube/contents/ui/Kube.qml3
1 files changed, 2 insertions, 1 deletions
diff --git a/components/kube/contents/ui/Kube.qml b/components/kube/contents/ui/Kube.qml
index a56838e5..1012d691 100644
--- a/components/kube/contents/ui/Kube.qml
+++ b/components/kube/contents/ui/Kube.qml
@@ -407,13 +407,14 @@ Controls2.ApplicationWindow {
407 Controls2.TextField { 407 Controls2.TextField {
408 id: searchField 408 id: searchField
409 Layout.fillWidth: true 409 Layout.fillWidth: true
410 placeholderText: "Search... is not available in this beta" 410 placeholderText: "Filter... (only applies to the mail list for now)"
411 } 411 }
412 412
413 Kube.Button { 413 Kube.Button {
414 text: "Go" 414 text: "Go"
415 415
416 onClicked: { 416 onClicked: {
417 mailListView.filterString = searchField.text
417 search.close() 418 search.close()
418 } 419 }
419 } 420 }