| Index: ash/accelerators/accelerator_dispatcher.cc
|
| diff --git a/ash/accelerators/accelerator_dispatcher.cc b/ash/accelerators/accelerator_dispatcher.cc
|
| index f8456d50a2c28d5b4594ac8a4df9e4bb58399490..3dd60f8eeae846dabbd9c064166c9af882bc0f03 100644
|
| --- a/ash/accelerators/accelerator_dispatcher.cc
|
| +++ b/ash/accelerators/accelerator_dispatcher.cc
|
| @@ -48,7 +48,7 @@ bool IsPossibleAcceleratorNotForMenu(const ui::KeyEvent& key_event) {
|
| // repost the event. That allows for the shortcut execution after
|
| // the context menu has exited.
|
| if (key_event.type() == ui::ET_KEY_PRESSED &&
|
| - key_event.flags() & (ui::EF_CONTROL_DOWN | ui::EF_ALT_DOWN)) {
|
| + (key_event.flags() & (ui::EF_CONTROL_DOWN | ui::EF_ALT_DOWN))) {
|
| const ui::KeyboardCode key_code = key_event.key_code();
|
| if ((key_code >= ui::VKEY_A && key_code <= ui::VKEY_Z) ||
|
| (key_code >= ui::VKEY_0 && key_code <= ui::VKEY_9) ||
|
|
|