diff options
Diffstat (limited to 'Source/SPBundleEditorController.m')
-rw-r--r-- | Source/SPBundleEditorController.m | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/Source/SPBundleEditorController.m b/Source/SPBundleEditorController.m index 829cff3e..8587082b 100644 --- a/Source/SPBundleEditorController.m +++ b/Source/SPBundleEditorController.m @@ -205,11 +205,6 @@ [keyEquivalentField setCanCaptureGlobalHotKeys:YES]; - if([[NSUserDefaults standardUserDefaults] dataForKey:@"BundleEditorFont"]) { - NSFont *nf = [NSUnarchiver unarchiveObjectWithData:[[NSUserDefaults standardUserDefaults] dataForKey:@"BundleEditorFont"]]; - [commandTextView setFont:nf]; - } - } #pragma mark - @@ -982,6 +977,14 @@ #pragma mark NSTextView delegates /** + * Update command text view for highlighting the current edited line + */ +- (void)textViewDidChangeSelection:(NSNotification *)aNotification +{ + [commandTextView setNeedsDisplay:YES]; +} + +/** * Traps any editing in editTextView to allow undo grouping only if the text buffer was really changed. * Inform the run loop delayed for larger undo groups. */ |