Chromium Code Reviews| Index: mojo/services/native_viewport/native_viewport_x11.cc |
| diff --git a/mojo/services/native_viewport/native_viewport_x11.cc b/mojo/services/native_viewport/native_viewport_x11.cc |
| index b3db2e8682e9cc2e988bf0c7907560cdd85b43fa..f1b4863529c1d718ac4d66188d5d9c299a0b33c6 100644 |
| --- a/mojo/services/native_viewport/native_viewport_x11.cc |
| +++ b/mojo/services/native_viewport/native_viewport_x11.cc |
| @@ -132,7 +132,7 @@ class NativeViewportX11 : public NativeViewport, |
| if (protocol == atom_wm_delete_window_) |
| delegate_->OnDestroyed(); |
| } else if (event->type == KeyPress || event->type == KeyRelease) { |
| - ui::KeyEvent key_event(event, true); |
| + ui::KeyEvent key_event(event, false); |
|
darin (slow to review)
2014/06/19 05:12:15
heh, I have this in my tree too!
|
| delegate_->OnEvent(&key_event); |
| } else if (event->type == ButtonPress || event->type == ButtonRelease || |
| event->type == MotionNotify) { |