Skip to content
Snippets Groups Projects
Commit d77d4060 authored by Fatih Uzunoğlu's avatar Fatih Uzunoğlu Committed by Pierre Lamot
Browse files

qml: change searchbox animation properties

lower duration, set easing type sine
parent d3719feb
No related branches found
No related tags found
No related merge requests found
......@@ -57,9 +57,9 @@ Widgets.NavigableFocusScope {
id: animateExpand;
target: searchBoxRect;
properties: "width"
duration: 200
duration: 125
to: VLCStyle.widthSearchInput
easing.type: Easing.OutSine
easing.type: Easing.InSine
onStopped: {
searchBox.placeholderText = i18n.qtr("filter")
}
......@@ -69,7 +69,7 @@ Widgets.NavigableFocusScope {
id: animateRetract;
target: searchBoxRect;
properties: "width"
duration: 200
duration: 125
to: 0
easing.type: Easing.OutSine
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment