fixed #46
This commit is contained in:
parent
7d59588601
commit
46bcb4c06b
1 changed files with 4 additions and 0 deletions
|
@ -47,7 +47,11 @@
|
||||||
{
|
{
|
||||||
[super windowControllerDidLoadNib:aController];
|
[super windowControllerDidLoadNib:aController];
|
||||||
// Add any code here that needs to be executed once the windowController has loaded the document's window.
|
// Add any code here that needs to be executed once the windowController has loaded the document's window.
|
||||||
|
[textField becomeFirstResponder];
|
||||||
|
|
||||||
|
// Enable Continous Spelling
|
||||||
|
NSTextView *textView = (NSTextView *)[[[self.windowControllers objectAtIndex:0] window] firstResponder];;
|
||||||
|
[textView setContinuousSpellCheckingEnabled:YES];
|
||||||
}
|
}
|
||||||
|
|
||||||
- (NSData *)dataOfType:(NSString *)typeName error:(NSError **)outError
|
- (NSData *)dataOfType:(NSString *)typeName error:(NSError **)outError
|
||||||
|
|
Reference in a new issue