From 9fc53967428f39758b59740ae4aa558e11234f35 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luk=C3=A1=C5=A1=20Tyrychtr?= Date: Tue, 24 Sep 2024 12:08:47 +0200 Subject: [PATCH] quick-toggle: Make the subtitle the a11y description of the toggle By doing that, more info is read by default, like the connected bluetooth device and likely more. Part-of: --- js/ui/quickSettings.js | 1 + 1 file changed, 1 insertion(+) diff --git a/js/ui/quickSettings.js b/js/ui/quickSettings.js index 344732e3f..ab282910e 100644 --- a/js/ui/quickSettings.js +++ b/js/ui/quickSettings.js @@ -104,6 +104,7 @@ export const QuickToggle = GObject.registerClass({ x_align: Clutter.ActorAlign.START, x_expand: true, }); + this.get_accessible().add_relationship(Atk.RelationType.DESCRIBED_BY, this._subtitle.get_accessible()); const titleBox = new St.BoxLayout({ y_align: Clutter.ActorAlign.CENTER,