From 370de395f79c168b0249448d9a25346bbc0d228b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alejandro=20Pi=C3=B1eiro?= Date: Tue, 21 Aug 2012 17:39:01 +0200 Subject: [PATCH] a11y: name label and main status chooser item don't neeed to be focusable This also gets the status combobox focusable again. https://bugzilla.gnome.org/show_bug.cgi?id=667439 --- js/ui/userMenu.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/js/ui/userMenu.js b/js/ui/userMenu.js index f113664aa..7b05145cd 100644 --- a/js/ui/userMenu.js +++ b/js/ui/userMenu.js @@ -100,6 +100,7 @@ const IMUserNameItem = new Lang.Class({ _init: function() { this.parent({ reactive: false, + can_focus: false, style_class: 'status-chooser-user-name' }); this._wrapper = new Shell.GenericContainer(); @@ -137,6 +138,7 @@ const IMStatusChooserItem = new Lang.Class({ _init: function() { this.parent({ reactive: false, + can_focus: false, style_class: 'status-chooser' }); this._userManager = AccountsService.UserManager.get_default();