summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--framework/qml/SearchPopup.qml5
1 files changed, 3 insertions, 2 deletions
diff --git a/framework/qml/SearchPopup.qml b/framework/qml/SearchPopup.qml
index b1787e1b..7548eaa9 100644
--- a/framework/qml/SearchPopup.qml
+++ b/framework/qml/SearchPopup.qml
@@ -31,6 +31,7 @@ Item {
31 property string backgroundColor: Kube.Colors.darkCharcoalGrey 31 property string backgroundColor: Kube.Colors.darkCharcoalGrey
32 property real backgroundOpacity: 0 32 property real backgroundOpacity: 0
33 property real searchAreaOpacity: backgroundOpacity / 4 33 property real searchAreaOpacity: backgroundOpacity / 4
34 property bool movedSearchBox: false
34 35
35 NumberAnimation on backgroundOpacity { 36 NumberAnimation on backgroundOpacity {
36 id: fadeIn 37 id: fadeIn
@@ -137,8 +138,8 @@ Item {
137 State { 138 State {
138 name: "searchInProgress" 139 name: "searchInProgress"
139 when: find.text.length != 0 140 when: find.text.length != 0
140 PropertyChanges {target: filterField; y: Kube.Units.gridUnit} 141 PropertyChanges {target: filterField; restoreEntryValues: false; y: Kube.Units.gridUnit}
141 PropertyChanges {target: root; searchAreaOpacity: 0} 142 PropertyChanges {target: root; restoreEntryValues: false; searchAreaOpacity: 0}
142 } 143 }
143 ] 144 ]
144 145