diff options
author | Jon TURNEY <jon.turney@dronecode.org.uk> | 2010-04-01 23:10:58 +0100 |
---|---|---|
committer | Jon TURNEY <jon.turney@dronecode.org.uk> | 2011-02-05 20:54:20 +0000 |
commit | b421f5e5122dbe125a5629969cc657bd966b4261 (patch) | |
tree | 7afa9491b7e9225917831f8b7405518d33f14045 | |
parent | e930aa7bbc7f04a128df8e6fd441aed5123a2eb6 (diff) |
Cygwin/X: Ignore MappingNotify events sent to clipboard integration client
Ignore MappingNotify events sent to clipboard integration client,
xmodmap changes aren't of interest to it, but there is no mechanism
to express that disinterest.
Signed-off-by: Jon TURNEY <jon.turney@dronecode.org.uk>
Reviewed-by: Colin Harrison <colin.harrison@virgin.net>
-rw-r--r-- | hw/xwin/winclipboardxevents.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/hw/xwin/winclipboardxevents.c b/hw/xwin/winclipboardxevents.c index 2f042fd0b..8b502b117 100644 --- a/hw/xwin/winclipboardxevents.c +++ b/hw/xwin/winclipboardxevents.c @@ -789,6 +789,9 @@ winClipboardFlushXEvents (HWND hwnd, case PropertyNotify: break; + case MappingNotify: + break; + default: ErrorF ("winClipboardFlushXEvents - unexpected event type %d\n", event.type); break; |