From 2c07597697ff2b1f5bfeec3ac7ec743ccb6cbc50 Mon Sep 17 00:00:00 2001 From: Fatih Uzunoglu Date: Wed, 13 Mar 2024 13:29:54 +0200 Subject: [PATCH] qml: correct invalid reference in Player --- modules/gui/qt/player/qml/Player.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/gui/qt/player/qml/Player.qml b/modules/gui/qt/player/qml/Player.qml index fdf4fb1e95..6cbaf02c97 100644 --- a/modules/gui/qt/player/qml/Player.qml +++ b/modules/gui/qt/player/qml/Player.qml @@ -714,7 +714,7 @@ FocusScope { || navBox.hovered || !rootPlayer.hasEmbededVideo) x: rootPlayer.x + VLCStyle.margin_normal + VLCStyle.applicationHorizontalMargin - y: controlBarView.y - navBox.height - VLCStyle.margin_normal + y: controlBar.y - navBox.height - VLCStyle.margin_normal dragXMin: 0 dragXMax: rootPlayer.width - navBox.width