summaryrefslogtreecommitdiffstats
path: root/macosx/HBAppDelegate.m
diff options
context:
space:
mode:
authorritsuka <[email protected]>2015-07-27 08:51:30 +0000
committerritsuka <[email protected]>2015-07-27 08:51:30 +0000
commitaa4f592e9a991144e1ecac601858eefbf12a853c (patch)
treecb599cf44204baccde988182beae546f86e22e52 /macosx/HBAppDelegate.m
parent0f53167a48fdb049021d0ea9128970c2a4e27e32 (diff)
MacGui: move the picture and filters settings to the main window.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@7379 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'macosx/HBAppDelegate.m')
-rw-r--r--macosx/HBAppDelegate.m10
1 files changed, 3 insertions, 7 deletions
diff --git a/macosx/HBAppDelegate.m b/macosx/HBAppDelegate.m
index fddd8a48d..32251f96f 100644
--- a/macosx/HBAppDelegate.m
+++ b/macosx/HBAppDelegate.m
@@ -193,8 +193,9 @@
// Delegate the validation to the queue controller
return [self.queueController validateMenuItem:menuItem];
}
- else if (action == @selector(showPicturePanel:) || action == @selector(showAddPresetPanel:) ||
- action == @selector(showPreviewWindow:) || action == @selector(browseSources:))
+ else if (action == @selector(showAddPresetPanel:) ||
+ action == @selector(showPreviewWindow:) ||
+ action == @selector(browseSources:))
{
// Delegate the validation to the main controller
return [self.mainController validateMenuItem:menuItem];
@@ -374,11 +375,6 @@
[self.outputPanel showWindow:sender];
}
-- (IBAction)showPicturePanel:(id)sender
-{
- [self.mainController showPicturePanel:self];
-}
-
- (IBAction)showPreviewWindow:(id)sender
{
[self.mainController showPreviewWindow:self];