From 776b71bad51f3b79673dfcbe5d8a4f304224b1ee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCllner?= Date: Wed, 15 Aug 2012 12:03:09 +0200 Subject: [PATCH] viewSelector: Allow to start keynav using the down arrow As the search entry acts like it had keyboard focus, it seems logical to use the down arrow to move focus to the active page. https://bugzilla.gnome.org/show_bug.cgi?id=682109 --- js/ui/viewSelector.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/ui/viewSelector.js b/js/ui/viewSelector.js index df86dc66f..c2d3727f7 100644 --- a/js/ui/viewSelector.js +++ b/js/ui/viewSelector.js @@ -247,7 +247,7 @@ const ViewSelector = new Lang.Class({ (symbol == Clutter.BackSpace && this.active)) { this.startSearch(event); } else if (!this.active) { - if (symbol == Clutter.Tab) { + if (symbol == Clutter.Tab || symbol == Clutter.Down) { this._activePage.navigate_focus(null, Gtk.DirectionType.TAB_FORWARD, false); return true; } else if (symbol == Clutter.ISO_Left_Tab) {