From bb5b0b4b3fea46b10ca48679f16cc30df05e0ba9 Mon Sep 17 00:00:00 2001 From: Timotej Lazar Date: Sun, 12 Sep 2021 19:37:16 +0200 Subject: [PATCH] Video: prevent pause/resume button from obtaining focus --- Video.qml | 1 + 1 file changed, 1 insertion(+) diff --git a/Video.qml b/Video.qml index f63a7ce..47eda92 100644 --- a/Video.qml +++ b/Video.qml @@ -114,6 +114,7 @@ Page { checkable: true checked: media.playbackState !== MediaPlayer.PlayingState onClicked: checked ? media.pause() : media.play() + focusPolicy: Qt.NoFocus } Label { text: new Date(media.position).toISOString().substr(12, 9) } Slider {