| Index: ui/aura/root_window.cc
|
| diff --git a/ui/aura/root_window.cc b/ui/aura/root_window.cc
|
| index 1e8a6b5b0d1786a34edbc9293065295aa30f3ac1..0251169b09affb9b92796b5251c4467014227778 100644
|
| --- a/ui/aura/root_window.cc
|
| +++ b/ui/aura/root_window.cc
|
| @@ -194,6 +194,8 @@ bool RootWindow::DispatchMouseEvent(MouseEvent* event) {
|
| bool RootWindow::DispatchKeyEvent(KeyEvent* event) {
|
| DispatchHeldMouseMove();
|
| KeyEvent translated_event(*event);
|
| + if (translated_event.key_code() == ui::VKEY_UNKNOWN)
|
| + return false;
|
| return ProcessKeyEvent(focused_window_, &translated_event);
|
| }
|
|
|
|
|