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 - Problem in unicode input translation (Bug #471 follow up)
Summary: Problem in unicode input translation (Bug #471 follow up)
Status: RESOLVED FIXED
Alias: None
Product: SDL
Classification: Unclassified
Component: video (show other bugs)
Version: HG 1.2
Hardware: PowerPC Mac OS X (All)
: P2 major
Assignee: Ryan C. Gordon
QA Contact: Sam Lantinga
URL:
Keywords:
: 516 532 (view as bug list)
Depends on:
Blocks:
 
Reported: 2007-10-24 13:11 UTC by Guillaume Borios
Modified: 2007-12-30 02:57 UTC (History)
2 users (show)

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
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. ***