diff options
Diffstat (limited to 'WebCore/plugins')
-rw-r--r-- | WebCore/plugins/gtk/PluginViewGtk.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/WebCore/plugins/gtk/PluginViewGtk.cpp b/WebCore/plugins/gtk/PluginViewGtk.cpp index 6608f6c..35f8ee2 100644 --- a/WebCore/plugins/gtk/PluginViewGtk.cpp +++ b/WebCore/plugins/gtk/PluginViewGtk.cpp @@ -282,7 +282,7 @@ void PluginView::handleKeyboardEvent(KeyboardEvent* event) xEvent.xkey.subwindow = 0; // we have no child window xEvent.xkey.time = event->timeStamp(); xEvent.xkey.state = gdkEvent->state; // GdkModifierType mirrors xlib state masks - xEvent.xkey.keycode = gdkEvent->keyval; + xEvent.xkey.keycode = gdkEvent->hardware_keycode; xEvent.xkey.same_screen = true; // NOTE: As the XEvents sent to the plug-in are synthesized and there is not a native window |