mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-06-02 15:11:00 +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
d3cc92e01c
commit
902f903b5f
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>
|
2006-12-06 Matt Rice <ratmice@gmail.com>
|
||||||
|
|
||||||
* Source/NSTextView.m: Don't update the selection when dragging a
|
* Source/NSTextView.m: Don't update the selection when dragging a
|
||||||
|
|
|
@ -28,6 +28,7 @@
|
||||||
#include "AppKit/NSInputManager.h"
|
#include "AppKit/NSInputManager.h"
|
||||||
#include "AppKit/NSInputServer.h"
|
#include "AppKit/NSInputServer.h"
|
||||||
#include "AppKit/NSText.h"
|
#include "AppKit/NSText.h"
|
||||||
|
#include "AppKit/NSHelpManager.h"
|
||||||
|
|
||||||
/* For NSBeep () */
|
/* For NSBeep () */
|
||||||
#include "AppKit/NSGraphics.h"
|
#include "AppKit/NSGraphics.h"
|
||||||
|
@ -664,6 +665,10 @@ static NSInputManager *currentInputManager = nil;
|
||||||
[self doCommandBySelector: @selector (insertNewline:)];
|
[self doCommandBySelector: @selector (insertNewline:)];
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
case NSHelpFunctionKey:
|
||||||
|
[NSHelpManager setContextHelpModeActive: YES];
|
||||||
|
break;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
[self insertText: characters];
|
[self insertText: characters];
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue