diff options
author | skuhne@chromium.org <skuhne@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-02-22 06:12:52 +0000 |
---|---|---|
committer | skuhne@chromium.org <skuhne@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-02-22 06:12:52 +0000 |
commit | e846c006edf7e38ee103b4962346b31bd4a6d4e9 (patch) | |
tree | ca20dfc302e1782033371ecd747b48e57c4c73fb /ash/system | |
parent | bd8f606940b8e709388c5470ad8c1806033659d6 (diff) | |
download | chromium_src-e846c006edf7e38ee103b4962346b31bd4a6d4e9.zip chromium_src-e846c006edf7e38ee103b4962346b31bd4a6d4e9.tar.gz chromium_src-e846c006edf7e38ee103b4962346b31bd4a6d4e9.tar.bz2 |
Fixing activation state problem with the launcher acessiblity pane
BUG=165089
TEST=unittest
Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=183728
Review URL: https://chromiumcodereview.appspot.com/12315021
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@184045 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ash/system')
-rw-r--r-- | ash/system/status_area_widget_delegate.cc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/ash/system/status_area_widget_delegate.cc b/ash/system/status_area_widget_delegate.cc index 662f943..99eeb20 100644 --- a/ash/system/status_area_widget_delegate.cc +++ b/ash/system/status_area_widget_delegate.cc @@ -24,6 +24,9 @@ namespace internal { StatusAreaWidgetDelegate::StatusAreaWidgetDelegate() : focus_cycler_for_testing_(NULL), alignment_(SHELF_ALIGNMENT_BOTTOM) { + // Allow the launcher to surrender the focus to another window upon + // navigation completion by the user. + set_allow_deactivate_on_esc(true); } StatusAreaWidgetDelegate::~StatusAreaWidgetDelegate() { |