We are currently migrating Bugzilla to GitHub issues.
Any changes made to the bug tracker now will be lost, so please do not post new bugs or make changes to them.
When we're done, all bug URLs will redirect to their equivalent location on the new bug tracker.

Bug 508

Summary: Problem in unicode input translation (Bug #471 follow up)
Product: SDL Reporter: Guillaume Borios <gborios>
Component: videoAssignee: Ryan C. Gordon <icculus>
Status: RESOLVED FIXED QA Contact: Sam Lantinga <slouken>
Severity: major    
Priority: P2 CC: christophermounce, mressl
Version: HG 1.2   
Hardware: PowerPC   
OS: Mac OS X (All)   

Description Guillaume Borios 2007-10-24 13:11:01 UTC
On at least SDL 1.2.12 for Mac OS X :

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
Comment 1 Marc S. Ressl 2007-11-19 09:02:00 UTC
*** Bug 516 has been marked as a duplicate of this bug. ***
Comment 2 Sam Lantinga 2007-12-29 13:36:21 UTC
This is fixed with revision 3495.  Thanks!
Comment 3 Sam Lantinga 2007-12-30 02:57:55 UTC
*** Bug 532 has been marked as a duplicate of this bug. ***