From b5ae104bcddcc6a6a9cf73eab47bb43fe3a6ad14 Mon Sep 17 00:00:00 2001 From: Timotej Lazar Date: Wed, 15 Sep 2021 22:21:32 +0200 Subject: [PATCH] Video: prevent time slider from obtaining focus --- Video.qml | 1 + 1 file changed, 1 insertion(+) 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) }