From ac0213a516116280228da0d5105b932f99734b47 Mon Sep 17 00:00:00 2001 From: Rui Matos Date: Fri, 7 Aug 2015 15:16:58 +0200 Subject: [PATCH] viewSelector: Make the compose key focus the search entry This way composed characters can be used to start searches. https://bugzilla.gnome.org/show_bug.cgi?id=753320 --- js/ui/viewSelector.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/js/ui/viewSelector.js b/js/ui/viewSelector.js index 660f619a9..3776b2c92 100644 --- a/js/ui/viewSelector.js +++ b/js/ui/viewSelector.js @@ -465,6 +465,9 @@ const ViewSelector = new Lang.Class({ }, _shouldTriggerSearch: function(symbol) { + if (symbol == Clutter.Multi_key) + return true; + if (symbol == Clutter.BackSpace && this._searchActive) return true;