From a607174a25e5d1998e8f8d5faa2437812c69d05e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCllner?= Date: Mon, 29 Oct 2012 19:21:48 +0100 Subject: [PATCH] runDialog: Add entry to focus chain Currently the entry takes the intial key focus, but is not actually part of the focus chain. Fix that, even though keynav does not work too well for the dialog anyway, due to the entry consuming tab for command completion. https://bugzilla.gnome.org/show_bug.cgi?id=687127 --- js/ui/runDialog.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/js/ui/runDialog.js b/js/ui/runDialog.js index 3db85d838..2ec1deaf5 100644 --- a/js/ui/runDialog.js +++ b/js/ui/runDialog.js @@ -206,7 +206,8 @@ const RunDialog = new Lang.Class({ this.contentLayout.add(label, { y_align: St.Align.START }); - let entry = new St.Entry({ style_class: 'run-dialog-entry' }); + let entry = new St.Entry({ style_class: 'run-dialog-entry', + can_focus: true }); ShellEntry.addContextMenu(entry); entry.label_actor = label;