diff options
Diffstat (limited to 'macosx/HBAppDelegate.m')
-rw-r--r-- | macosx/HBAppDelegate.m | 10 |
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]; |