Blame SOURCES/0001-apps-menu-Explicitly-set-label_actor.patch

b19d38
From fe13aa54e7c104f63689fcd15957ab16ffc0c3ef Mon Sep 17 00:00:00 2001
1205f8
From: =?UTF-8?q?Florian=20M=C3=BCllner?= <fmuellner@gnome.org>
1205f8
Date: Thu, 17 Mar 2016 17:15:38 +0100
1205f8
Subject: [PATCH] apps-menu: Explicitly set label_actor
1205f8
1205f8
For some reason orca fails to pick up the label of category items,
1205f8
so set the label_actor explicitly as workaround.
1205f8
---
1205f8
 extensions/apps-menu/extension.js | 4 +++-
1205f8
 1 file changed, 3 insertions(+), 1 deletion(-)
1205f8
1205f8
diff --git a/extensions/apps-menu/extension.js b/extensions/apps-menu/extension.js
b19d38
index 983a4e7..f8cef41 100644
1205f8
--- a/extensions/apps-menu/extension.js
1205f8
+++ b/extensions/apps-menu/extension.js
b19d38
@@ -113,7 +113,9 @@ class CategoryMenuItem extends PopupMenu.PopupBaseMenuItem {
1205f8
         else
1205f8
             name = _('Favorites');
1205f8
 
1205f8
-        this.add_child(new St.Label({ text: name }));
1205f8
+        const label = new St.Label({ text: name });
1205f8
+        this.add_child(label);
1205f8
+        this.actor.label_actor = label;
1205f8
         this.connect('motion-event', this._onMotionEvent.bind(this));
1205f8
         this.connect('notify::active', this._onActiveChanged.bind(this));
1205f8
     }
1205f8
-- 
b19d38
2.32.0
1205f8