summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTimotej Lazar <timotej.lazar@araneo.si>2021-09-15 22:21:32 +0200
committerTimotej Lazar <timotej.lazar@araneo.si>2021-09-16 20:34:24 +0200
commitb5ae104bcddcc6a6a9cf73eab47bb43fe3a6ad14 (patch)
treea8d534b381badee36ed0d3cb5527ac8745e407cc
parent98e9ef4b9cb49d3ae7c5787adb1a848d29df1462 (diff)
Video: prevent time slider from obtaining focus
-rw-r--r--Video.qml1
1 files changed, 1 insertions, 0 deletions
diff --git a/Video.qml b/Video.qml
index 47eda92..dd502ae 100644
--- a/Video.qml
+++ b/Video.qml
@@ -122,6 +122,7 @@ Page {
from: 0; to: media.duration
value: media.position
onMoved: media.seek(value)
+ focusPolicy: Qt.NoFocus
}
Label { text: new Date(media.duration).toISOString().substr(12, 7) }