summaryrefslogtreecommitdiffstats
path: root/framework
diff options
context:
space:
mode:
Diffstat (limited to 'framework')
-rw-r--r--framework/qml/MailListView.qml4
1 files changed, 3 insertions, 1 deletions
diff --git a/framework/qml/MailListView.qml b/framework/qml/MailListView.qml
index 6088e500..ffdacdbe 100644
--- a/framework/qml/MailListView.qml
+++ b/framework/qml/MailListView.qml
@@ -86,6 +86,7 @@ FocusScope {
86 86
87 Kube.IconButton { 87 Kube.IconButton {
88 iconName: Kube.Icons.remove 88 iconName: Kube.Icons.remove
89 activeFocusOnTab: visible
89 onClicked: { 90 onClicked: {
90 filterField.visible = false 91 filterField.visible = false
91 mailListModel.filter = "" 92 mailListModel.filter = ""
@@ -97,7 +98,8 @@ FocusScope {
97 Layout.fillWidth: true 98 Layout.fillWidth: true
98 placeholderText: "Filter..." 99 placeholderText: "Filter..."
99 onTextChanged: mailListModel.filter = text 100 onTextChanged: mailListModel.filter = text
100 focus: true 101 activeFocusOnTab: visible
102 focus: visible
101 } 103 }
102 } 104 }
103 } 105 }