summaryrefslogtreecommitdiffstats
path: root/macosx
diff options
context:
space:
mode:
authordynaflash <[email protected]>2008-09-17 15:04:04 +0000
committerdynaflash <[email protected]>2008-09-17 15:04:04 +0000
commit4ae241b8ecdc2b5613bb42982f0a60eaef447be3 (patch)
treeeb86e49bd3122849dbf4f7a9e5ac481cefe2c23f /macosx
parentea737a42db1b3bfcc63f885b9c5fd01145006902 (diff)
MacGui: fix chapter markers which were borked in 1703
-Note: this only fixed adding chapter markers. Custom chapter names are *not* fixed, if chapter markers checkbox is checked you will currently get 001, 002, etc. etc. for chapter names. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@1708 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'macosx')
-rw-r--r--macosx/Controller.mm2
1 files changed, 1 insertions, 1 deletions
diff --git a/macosx/Controller.mm b/macosx/Controller.mm
index 8e85aab68..5072e6136 100644
--- a/macosx/Controller.mm
+++ b/macosx/Controller.mm
@@ -2482,7 +2482,7 @@ fWorkingCount = 0;
/* We set the chapter marker extraction here based on the format being
mpeg4 or mkv and the checkbox being checked */
- if ([[queueToApply objectForKey:@"Mp4HttpOptimize"] intValue] == 1)
+ if ([[queueToApply objectForKey:@"ChapterMarkers"] intValue] == 1)
{
job->chapter_markers = 1;
}