summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorritsuka <[email protected]>2015-01-07 07:08:46 +0000
committerritsuka <[email protected]>2015-01-07 07:08:46 +0000
commitfefb2423b537055fa2bc7515550bfc5dd4bba02e (patch)
tree076a06dc880d3b3e437b8a4a9126fd5248306b0b
parent2e2c42e30d25c69c2153cf6d6619e1740e89357c (diff)
MacGui: use the inline find bar in the activity window.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6691 b64f7644-9d1e-0410-96f1-a4d463321fa5
-rw-r--r--macosx/HBOutputPanelController.m6
1 files changed, 6 insertions, 0 deletions
diff --git a/macosx/HBOutputPanelController.m b/macosx/HBOutputPanelController.m
index 5f0f5519f..fd003b034 100644
--- a/macosx/HBOutputPanelController.m
+++ b/macosx/HBOutputPanelController.m
@@ -42,6 +42,12 @@
*/
[self window];
+ // Use the inline search bar if available.
+ if ([textView respondsToSelector:@selector(setUsesFindBar:)])
+ {
+ [textView setUsesFindBar:YES];
+ }
+
/* We initialize the outputTextStorage object for the activity window */
outputTextStorage = [[NSTextStorage alloc] init];