comparison docs.html @ 4123:9d90d7765fa7 SDL-1.2

Guillaume Borios fixed bug #508 When unicode translation is ON, pressing the escape key raise an NSBeep() because the NSTextView interprets the key as a special command (in that case impossible to interpret)... The NSTextView instance should replaced by something subclassed so that doCommandBySelector: does nothing. Example code : @interface SDLTranslatorResponder : NSTextView { } - (void) doCommandBySelector:(SEL)myselector; @end @implementation SDLTranslatorResponder - (void) doCommandBySelector:(SEL) myselector {} @end
author Sam Lantinga <slouken@libsdl.org>
date Sat, 29 Dec 2007 21:31:26 +0000
parents 917ca146d901
children 568c9b3c0167
comparison
equal deleted inserted replaced
4122:cb7b118b400a 4123:9d90d7765fa7
76 <P> 76 <P>
77 SDL now builds on Mac OS X 10.5 (Leopard). 77 SDL now builds on Mac OS X 10.5 (Leopard).
78 </P> 78 </P>
79 <P> 79 <P>
80 Fixed high frequency crash involving text input. 80 Fixed high frequency crash involving text input.
81 </P>
82 <P>
83 Fixed beeping when the escape key is pressed and UNICODE translation is enabled.
81 </P> 84 </P>
82 <P> 85 <P>
83 Improved trackpad scrolling support. 86 Improved trackpad scrolling support.
84 </P> 87 </P>
85 <P> 88 <P>