diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2010-01-01 23:03:42 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2010-01-01 23:03:42 (GMT) |
commit | aa4c765febd5c742dbc658574c6a06d4e94fdc59 (patch) | |
tree | fe2654888e979765a3b62105e2c73fdee4cf4442 /ChangeLog | |
parent | 5834454dfdb57f33bae61fb49206c33584e05ee6 (diff) | |
download | tk-aa4c765febd5c742dbc658574c6a06d4e94fdc59.zip tk-aa4c765febd5c742dbc658574c6a06d4e94fdc59.tar.gz tk-aa4c765febd5c742dbc658574c6a06d4e94fdc59.tar.bz2 |
[Bug 1924761]: Consolidate calls to XFilterEvent to make input methods work.
Diffstat (limited to 'ChangeLog')
-rw-r--r-- | ChangeLog | 25 |
1 files changed, 20 insertions, 5 deletions
@@ -1,13 +1,28 @@ +2010-01-01 Donal K. Fellows <dkf@users.sf.net> + + * unix/tkUnixEvent.c (TransferXEventsToTcl): [Bug 1924761]: Move the + * generic/tkEvent.c (Tk_HandleEvent): passing of key events to + XFilterEvent to the low level point where all other events are + handled, where it should have been all along. This makes more input + methods work, stops [event generate] from interfering with input + methods, and allows the simplification of tkEvent.c by removing half + of InvokeInputMethods and allowing the rest - which was not full input + method handling - to be rolled back into Tk_HandleEvent. Introduces a + small potential bug when a focus change and input method handling are + too close together in the Tk event queue, but that should be less + deadly to usability than the previous problems where input methods + could fail completely or reorder key presses... + 2009-12-30 Pat Thoyts <patthoyts@users.sourceforge.net> - * generic/tkMenu.c: Torn off menu items are only activated over - * tests/menu.tcl: a limited region of the window. Fixed to make - the whole width of a menu item activate the entry. [Patch 2879789] + * generic/tkMenu.c: [Patch 2879789]: Torn off menu items are only + * tests/menu.tcl: activated over a limited region of the window. + Fixed to make the whole width of a menu item activate the entry. 2009-12-27 Pat Thoyts <patthoyts@users.sourceforge.net> - * win/tkWinMenu.c: Highlight for cascade items in torn-off menus - is incorrect on Windows. Applied patch from [Bug 2879927]. + * win/tkWinMenu.c: [Bug 2879927]: Highlight for cascade items in + torn-off menus is incorrect on Windows. 2009-12-25 Donal K. Fellows <dkf@users.sf.net> |