diff options
author | dynaflash <[email protected]> | 2009-11-21 17:13:50 +0000 |
---|---|---|
committer | dynaflash <[email protected]> | 2009-11-21 17:13:50 +0000 |
commit | 1fdb8349786a103ac7543416613bdc87c8f3c1a4 (patch) | |
tree | 0217eea7a5613b4f3f9807c66a239cba04987e53 /macosx | |
parent | ceceedcb7e4c6594eb32b1a51210a4c02abc8000 (diff) |
MacGui: Trigger "Open Source Title Specific" if the option key is held down when clicking "Open" in the source browse window.
- This has the same effect as choosing Open Source Title Specific from the file menu, which still exists.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@2951 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'macosx')
-rw-r--r-- | macosx/Controller.m | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/macosx/Controller.m b/macosx/Controller.m index ea3460731..e23c90300 100644 --- a/macosx/Controller.m +++ b/macosx/Controller.m @@ -1354,7 +1354,7 @@ static NSString * ChooseSourceIdentifier = @"Choose Source It */ [sheet orderOut: self]; - if (sender == fOpenSourceTitleMMenu) + if (sender == fOpenSourceTitleMMenu || [[NSApp currentEvent] modifierFlags] & NSAlternateKeyMask) { /* We put the chosen source path in the source display text field for the * source title selection sheet in which the user specifies the specific title to be |