From e37574510e688b56d281d36d0df8ed523cc20f9f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alejandro=20Pi=C3=B1eiro?= Date: Fri, 17 Feb 2012 18:16:53 +0100 Subject: [PATCH] a11y: setting a proper name for Activities button https://bugzilla.gnome.org/show_bug.cgi?id=670312 --- js/ui/panel.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/js/ui/panel.js b/js/ui/panel.js index 9311f66ba..65efa7008 100644 --- a/js/ui/panel.js +++ b/js/ui/panel.js @@ -614,6 +614,8 @@ const ActivitiesButton = new Lang.Class({ this._label = new St.Label({ text: _("Activities") }); container.add_actor(this._label); + this.actor.label_actor = this._label; + this._hotCorner = new Layout.HotCorner(); container.add_actor(this._hotCorner.actor);