diff options
Diffstat (limited to 'Source/SPEditSheetTextView.m')
-rw-r--r-- | Source/SPEditSheetTextView.m | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/Source/SPEditSheetTextView.m b/Source/SPEditSheetTextView.m index e46868b7..ab6530e9 100644 --- a/Source/SPEditSheetTextView.m +++ b/Source/SPEditSheetTextView.m @@ -327,4 +327,21 @@ [self saveChangedFontInUserDefaults]; } +/** + * Needed to allow Find Panel inside the textView if it runs in a sheet + */ +- (BOOL)becomeFirstResponder +{ + return YES; +} + +/** + * Needed to allow Find Panel inside the textView if it runs in a sheet + */ +- (BOOL)resignFirstResponder +{ + return YES; +} + + @end |