From dce22fc7895247cf3186f2be8257aae9256b6ffd Mon Sep 17 00:00:00 2001 From: Nate Graham Date: Mon, 11 Oct 2021 07:32:38 -0600 Subject: [PATCH] Remove pointless tooltip from Labelbackground The tooltip simply repeates the text of this component which is short enough that it's always visible. It is therefore redundant and unnecessary. --- discover/qml/LabelBackground.qml | 3 --- 1 file changed, 3 deletions(-) diff --git a/discover/qml/LabelBackground.qml b/discover/qml/LabelBackground.qml index 28e002e8e..c731e94e8 100644 --- a/discover/qml/LabelBackground.qml +++ b/discover/qml/LabelBackground.qml @@ -46,7 +46,4 @@ Control horizontalAlignment: Text.AlignHCenter color: root.inProgress ? Kirigami.Theme.highlightedTextColor : Kirigami.Theme.textColor } - - ToolTip.visible: hovered - ToolTip.text: theLabel.text } -- GitLab