diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2011-10-25 20:42:56 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2011-10-25 20:42:56 (GMT) |
commit | 7386abe11a73dd013ce6fb5674493ec2ddbdc59b (patch) | |
tree | fa23d08cc47013050a0d390a8cdc76a79a081be3 /unix/tkUnixEvent.c | |
parent | bb5cf6ea1f9419bc18120ac76132162637a2941f (diff) | |
parent | b7d0d319e0ea7c6b85ca3d5d7b9f22a6a129d82f (diff) | |
download | tk-7386abe11a73dd013ce6fb5674493ec2ddbdc59b.zip tk-7386abe11a73dd013ce6fb5674493ec2ddbdc59b.tar.gz tk-7386abe11a73dd013ce6fb5674493ec2ddbdc59b.tar.bz2 |
Fix for bug 3410609; confirmed to work on UK keyboard.
Diffstat (limited to 'unix/tkUnixEvent.c')
-rw-r--r-- | unix/tkUnixEvent.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/unix/tkUnixEvent.c b/unix/tkUnixEvent.c index 67cff2d..09dde72 100644 --- a/unix/tkUnixEvent.c +++ b/unix/tkUnixEvent.c @@ -316,6 +316,7 @@ TransferXEventsToTcl( if (event.type == KeyPress || event.type == KeyRelease) { event.k.charValuePtr = NULL; event.k.charValueLen = 0; + event.k.keysym = NoSymbol; /* * Force the calling of the input method engine now. The results |