From ecde657c332d974302d70b3fadb18f74b1e79dbe Mon Sep 17 00:00:00 2001 From: Fatih Uzunoglu Date: Thu, 30 May 2024 17:35:07 +0300 Subject: [PATCH] qml: do not use tool tip in TextAutoScroller Label by default should show the tool tip itself. --- modules/gui/qt/widgets/qml/TextAutoScroller.qml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/modules/gui/qt/widgets/qml/TextAutoScroller.qml b/modules/gui/qt/widgets/qml/TextAutoScroller.qml index 4415b091b9..8113cc8257 100644 --- a/modules/gui/qt/widgets/qml/TextAutoScroller.qml +++ b/modules/gui/qt/widgets/qml/TextAutoScroller.qml @@ -34,10 +34,6 @@ Item { readonly property real requiredTextWidth: label.implicitWidth readonly property bool _needsToScroll: (label.width < requiredTextWidth) - ToolTip.delay: VLCStyle.delayToolTipAppear - ToolTip.visible: scrolling && hoverArea.containsMouse - ToolTip.text: label.text - //Accessible Accessible.role: Accessible.StaticText Accessible.name: label.text