From 93ceb4d49cb12a830500fe0a8bfe33a127a559eb Mon Sep 17 00:00:00 2001 From: Tobias Fella Date: Sun, 3 Mar 2024 17:11:53 +0100 Subject: [PATCH] Improve hover link indicator accessibility It's a bit pointless, since hovering it requires a mouse... but it's better than the previous behavior --- src/qml/main.qml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/qml/main.qml b/src/qml/main.qml index c94eae508..52615b814 100644 --- a/src/qml/main.qml +++ b/src/qml/main.qml @@ -425,10 +425,12 @@ Kirigami.ApplicationWindow { z: 20 x: 0 + Accessible.ignored: true y: parent.height - implicitHeight contentItem: QQC2.Label { id: linkText text: parent.text.startsWith("https://matrix.to/") ? "" : parent.text + Accessible.description: i18nc("@info screenreader", "The currently selected link") } Kirigami.Theme.colorSet: Kirigami.Theme.View background: Rectangle {