From: Nate Graham Date: Fri, 20 Jun 2025 14:38:03 +0000 (-0600) Subject: [PATCH] kcms/feedback: remove little hover icons X-Git-Tag: archive/raspbian/4%6.3.6-2+rpi1^2~4 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=925bbcb22f7fe86af7ba1f4b53c8763de9daee40;p=plasma-workspace.git [PATCH] kcms/feedback: remove little hover icons These icons have an unclear purpose since they have no text, and the same icons are not repeated elsewhere in the KCM's UI to provide some clue as to their meaning or purpose. They only appear on hover and can't be accessed on touch at all; let's just remove them to prevent user confusion. The backend code providing icons in the model is preserved in case we ever want to do something else with icons in the future. BUG: 505761 FIXED-IN: 6.4.1 (cherry picked from commit 3c277146c4ec44cde54988dcd6c70b17442ad5e9) Co-authored-by: Nate Graham Gbp-Pq: Name upstream_a4e153b3_kcms-feedback-remove-little-hover-icons.patch --- diff --git a/kcms/feedback/ui/main.qml b/kcms/feedback/ui/main.qml index bb565169..839b8ed3 100644 --- a/kcms/feedback/ui/main.qml +++ b/kcms/feedback/ui/main.qml @@ -145,27 +145,6 @@ SimpleKCM { text: "· " + modelData.description textFormat: Text.PlainText Layout.fillWidth: true - - MouseArea { - anchors.fill: parent - hoverEnabled: true - QQC2.ToolTip { - width: iconsLayout.implicitWidth + Kirigami.Units.largeSpacing * 2 - height: iconsLayout.implicitHeight + Kirigami.Units.smallSpacing * 2 - visible: parent.containsMouse - RowLayout { - id: iconsLayout - Repeater { - model: modelData.icons - delegate: Kirigami.Icon { - implicitHeight: Kirigami.Units.iconSizes.medium - implicitWidth: Kirigami.Units.iconSizes.medium - source: modelData - } - } - } - } - } } } }