diff options
author | dynaflash <[email protected]> | 2010-03-05 22:40:29 +0000 |
---|---|---|
committer | dynaflash <[email protected]> | 2010-03-05 22:40:29 +0000 |
commit | 8b5904841e60f6eb651d4beca8159baff598678e (patch) | |
tree | 1afdc3d2626999bf2d3d09244e25c2a746c8e6f8 | |
parent | 58ab4876cb1bc73f58b661a1689463de6b4fba63 (diff) |
MacGui: Fix issue where closing the main window, then clicking on the dock icon did not make the main window reappear.
- Note: this does not fix the issue in snow leopard where minimizing the main window behind the dock icon does not reappear when dock icon is clicked.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@3152 b64f7644-9d1e-0410-96f1-a4d463321fa5
-rw-r--r-- | macosx/Controller.m | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/macosx/Controller.m b/macosx/Controller.m index c9219aad1..cd5461250 100644 --- a/macosx/Controller.m +++ b/macosx/Controller.m @@ -325,7 +325,8 @@ static NSString * ChooseSourceIdentifier = @"Choose Source It - (void) awakeFromNib { [fWindow center]; - [fWindow setExcludedFromWindowsMenu:YES]; + [fWindow setExcludedFromWindowsMenu:NO]; + [fAdvancedOptions setView:fAdvancedView]; /* lets setup our presets drawer for drag and drop here */ |