From a25fe5bf2eab924125963e3b2b004ac553e3c86f Mon Sep 17 00:00:00 2001 From: Assam Boudjelthia Date: Wed, 15 Sep 2021 14:25:49 +0300 Subject: Hide the metadata and tracks side bar when videoOutput is tapped Change-Id: I7ec3e321335877831930b7ffa1076b79c87fcdef Reviewed-by: Samuel Mira Reviewed-by: Piotr Srebrny Reviewed-by: Lars Knoll (cherry picked from commit a3c15ba4984f2e7f903e48cfd273af2f3861f083) Reviewed-by: Qt Cherry-pick Bot --- examples/multimedia/video/mediaplayer/main.qml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/examples/multimedia/video/mediaplayer/main.qml b/examples/multimedia/video/mediaplayer/main.qml index 84e0e8647..b831d5f56 100644 --- a/examples/multimedia/video/mediaplayer/main.qml +++ b/examples/multimedia/video/mediaplayer/main.qml @@ -126,6 +126,12 @@ Window { parent.fullScreen ? showNormal() : showFullScreen() parent.fullScreen = !parent.fullScreen } + onTapped: { + metadataInfo.visible = false + audioTracksInfo.visible = false + videoTracksInfo.visible = false + subtitleTracksInfo.visible = false + } } } -- cgit v1.2.3