Video: prevent time slider from obtaining focus

This commit is contained in:
Timotej Lazar 2021-09-15 22:21:32 +02:00
parent 98e9ef4b9c
commit b5ae104bcd
No known key found for this signature in database
GPG key ID: B6F38793D143456F

View file

@ -122,6 +122,7 @@ Page {
from: 0; to: media.duration from: 0; to: media.duration
value: media.position value: media.position
onMoved: media.seek(value) onMoved: media.seek(value)
focusPolicy: Qt.NoFocus
} }
Label { text: new Date(media.duration).toISOString().substr(12, 7) } Label { text: new Date(media.duration).toISOString().substr(12, 7) }