1
0
Fork 0
VideoPlayer/src/qml/Items/ChapterMarkerItem.qml
2020-05-06 12:43:01 +01:00

24 lines
441 B
QML

import QtQuick 2.0
Rectangle {
id: chapterMarker
property int time: 0
color: getAppearanceValueForTheme(appearance.themeName, "chapterMarkerColor")
width: 4
height: parent.height
x: progressBar.background.width / progressBar.to * time
z: 9000
anchors {
top: parent.top
bottom: parent.bottom
}
Connections {
target: player
enabled: true
onChaptersChanged: {
chapterMarker.destroy()
}
}
}