Skip to content
Snippets Groups Projects
Commit 19c038c9 authored by Fatih Uzunoğlu's avatar Fatih Uzunoğlu Committed by Jean-Baptiste Kempf
Browse files

qml: use OpacityAnimator in PlaylistListView

parent 244a52b8
No related branches found
No related tags found
No related merge requests found
......@@ -427,10 +427,19 @@ Control {
}
add: Transition {
NumberAnimation {
property: "opacity"; from: 0; to: 1.0
SequentialAnimation {
PropertyAction {
// TODO: Remove this >= Qt 5.15
property: "opacity"
value: 0.0
}
duration: VLCStyle.duration_long
OpacityAnimator {
from: 0.0 // QTBUG-66475
to: 1.0
duration: VLCStyle.duration_long
easing.type: Easing.OutSine
}
}
}
......@@ -440,8 +449,6 @@ Control {
duration: VLCStyle.duration_long; easing.type: Easing.OutSine
}
NumberAnimation { property: "opacity"; to: 1.0 }
}
onSelectAll: root.model.selectAll()
......
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