Refactor Player, fix playing indicator
Some checks failed
Build / build-linux (push) Failing after 17s
Build / build-windows (push) Has been cancelled

This commit is contained in:
Dark Steveneq
2025-10-14 13:36:21 +02:00
parent def26f8fda
commit d46d37c465
4 changed files with 107 additions and 69 deletions

View File

@@ -8,20 +8,20 @@ Slider {
implicitWidth: 130
implicitHeight: 20
OpacityAnimator on opacity{
from: 0.7
to: 1
duration: 200
target: this
running: parent.hovered
}
OpacityAnimator on opacity{
from: 1
to: 0.7
duration: 200
target: this
running: !parent.hovered
}
// OpacityAnimator on opacity{
// from: 0.7
// to: 1
// duration: 200
// target: parent
// running: parent.hovered
// }
// OpacityAnimator on opacity{
// from: 1
// to: 0.7
// duration: 200
// target: parent
// running: !parent.hovered
// }
background: Rectangle {
color: "#555"