diff options
author | dynaflash <[email protected]> | 2008-03-05 14:29:45 +0000 |
---|---|---|
committer | dynaflash <[email protected]> | 2008-03-05 14:29:45 +0000 |
commit | c7e90d8397b77f31dddd7f16c61b30542ecc9ca0 (patch) | |
tree | 2f9d144c6a727d6e504b4da98130c8617e7361e2 /macosx | |
parent | 3e92b874fa90eccd2ccda75294c1bc985e9246ef (diff) |
MacGui: Fix issue where prepareJob was not sensing MKV in the Format popup correctly.
- Takes care of the no mkv chapter issues reported here: http://forum.handbrake.fr/viewtopic.php?f=12&t=5120
- Thanks for the diagnostic testing and bringing it to our attention simoncoul !
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@1327 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'macosx')
-rw-r--r-- | macosx/Controller.mm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/macosx/Controller.mm b/macosx/Controller.mm index 2b78c54e0..a64afe76d 100644 --- a/macosx/Controller.mm +++ b/macosx/Controller.mm @@ -1439,7 +1439,7 @@ static NSString * ChooseSourceIdentifier = @"Choose Source It job->mp4_optimize = 0; } } - if ([fDstFormatPopUp indexOfSelectedItem] == 0 || [fDstFormatPopUp indexOfSelectedItem] == 3) + if ([fDstFormatPopUp indexOfSelectedItem] == 0 || [fDstFormatPopUp indexOfSelectedItem] == 1) { /* We set the chapter marker extraction here based on the format being mpeg4 or mkv and the checkbox being checked */ |