Index: ui/aura/desktop_host_linux.cc |
diff --git a/ui/aura/desktop_host_linux.cc b/ui/aura/desktop_host_linux.cc |
index 6025de5a7e1bc84eb8ed114a8fabe0d5e7457be6..b3a080689a19c6bd42ae2491f0b612f03f29c8bc 100644 |
--- a/ui/aura/desktop_host_linux.cc |
+++ b/ui/aura/desktop_host_linux.cc |
@@ -467,6 +467,10 @@ base::MessagePumpDispatcher::DispatchStatus DesktopHostLinux::Dispatch( |
handled = true; |
break; |
} |
+ case MappingNotify: { |
+ XRefreshKeyboardMapping(&xev->xmapping); |
Daniel Erat
2011/12/05 20:39:36
nit: i think that this should be:
if (xev->xmappi
oshima
2011/12/05 20:57:28
Done.
|
+ break; |
+ } |
case MotionNotify: { |
// Discard all but the most recent motion event that targets the same |
// window with unchanged state. |