Browse Source

qml: do not use tool tip in TextAutoScroller

Label by default should show the tool tip itself.
pull/163/head
Fatih Uzunoglu 2 years ago
committed by Steve Lhomme
parent
commit
ecde657c33
  1. 4
      modules/gui/qt/widgets/qml/TextAutoScroller.qml

4
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

Loading…
Cancel
Save