mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-23 12:00:52 +00:00
fix for bug #18483
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@24192 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
0c74ad4ec6
commit
f92574fca1
2 changed files with 11 additions and 0 deletions
|
@ -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
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue