[gnome-shell] messageTray: Allow to start keynav with Tab



commit f2af0be9acd467a8a9d28e661f8c779855b6c41e
Author: Florian MÃllner <fmuellner gnome org>
Date:   Sat Sep 15 20:16:01 2012 +0200

    messageTray: Allow to start keynav with Tab
    
    Currently it is only possible to use keynav inside the tray if it
    has been triggered with the keyboard shortcut. Make it possible to
    initiate keynav by hitting Tab in other cases as well.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=682243

 js/ui/messageTray.js |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/js/ui/messageTray.js b/js/ui/messageTray.js
index ff045e2..5a2e3d2 100644
--- a/js/ui/messageTray.js
+++ b/js/ui/messageTray.js
@@ -1409,6 +1409,7 @@ const MessageTray = new Lang.Class({
             this._updateState();
             actor.grab_key_focus();
         }));
+        global.focus_manager.add_group(this.actor);
         this._summary = new St.BoxLayout({ name: 'summary-mode',
                                            reactive: true,
                                            track_hover: true,
@@ -1416,7 +1417,6 @@ const MessageTray = new Lang.Class({
                                            x_expand: true,
                                            y_align: Clutter.ActorAlign.CENTER,
                                            y_expand: true });
-        global.focus_manager.add_group(this._summary);
         this._summary.connect('notify::hover', Lang.bind(this, this._onSummaryHoverChanged));
         this.actor.add_actor(this._summary);
         this._summary.opacity = 0;



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]