git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@24192 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Richard Frith-MacDonald 2006-12-08 08:56:38 +00:00
parent 0c74ad4ec6
commit f92574fca1
2 changed files with 11 additions and 0 deletions

View file

@ -1,3 +1,9 @@
2006-12-08 Richard Frith-Macdoanld <rfm@gnu.org>
* Source/NSInputManager.m:
Use help function key to enter context help mode rather than
inserting it into the text.
2006-12-06 Matt Rice <ratmice@gmail.com>
* Source/NSTextView.m: Don't update the selection when dragging a

View file

@ -28,6 +28,7 @@
#include "AppKit/NSInputManager.h"
#include "AppKit/NSInputServer.h"
#include "AppKit/NSText.h"
#include "AppKit/NSHelpManager.h"
/* For NSBeep () */
#include "AppKit/NSGraphics.h"
@ -664,6 +665,10 @@ static NSInputManager *currentInputManager = nil;
[self doCommandBySelector: @selector (insertNewline:)];
break;
case NSHelpFunctionKey:
[NSHelpManager setContextHelpModeActive: YES];
break;
default:
[self insertText: characters];
break;