[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [bug #30538] X11 backend should generate NSBackTabCharacter for shif
From: |
Derek Fawcus |
Subject: |
Re: [bug #30538] X11 backend should generate NSBackTabCharacter for shift-tab |
Date: |
Sun, 25 Jul 2010 15:59:06 -0700 |
User-agent: |
Mutt/1.4.2.3i |
On Sun, Jul 25, 2010 at 08:58:48PM +0000, Fred Kiefer wrote:
>
> Update of bug #30538 (project gnustep):
>
> Status: None => Need Info
> Assigned to: None => FredKiefer
>
> _______________________________________________________
>
> Follow-up Comment #1:
>
> I just added support for
> NSBackTabCharacter into gui, so the basic gui code wont stop working as soon
> as this patch gets applied.
A typo in your change to NSWindow.m:
// If this is a BACKTAB event, move to the previous key view
if (character == NSTabCharacter)
{
[self selectPreviousKeyView: self];
return;
}
err - that looks like it should be comparing to NSBackTabCharacter not
NSTabCharacter :-)