diff options
author | dynaflash <[email protected]> | 2011-04-28 21:12:05 +0000 |
---|---|---|
committer | dynaflash <[email protected]> | 2011-04-28 21:12:05 +0000 |
commit | 0c62598eab1eef5d847a02dbb5f83bcd577397bd (patch) | |
tree | 8981fea3f843819b7d3ba4412a33f2d0072e6819 /macosx/HBQueueController.mm | |
parent | 66e613c21d53c454d56ebd079d04d3afb558bff4 (diff) |
MacGui: change key for video framerate mode from VideoframerateMode to VideoFramerateMode to match the lingui.
- Good catch Rodeo ... thanks!
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@3967 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'macosx/HBQueueController.mm')
-rw-r--r-- | macosx/HBQueueController.mm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/macosx/HBQueueController.mm b/macosx/HBQueueController.mm index 6cfddf939..a852bc2a1 100644 --- a/macosx/HBQueueController.mm +++ b/macosx/HBQueueController.mm @@ -1246,7 +1246,7 @@ return ![(HBQueueOutlineView*)outlineView isDragging]; /* for framerate look to see if we are using vfr detelecine */ if ([[item objectForKey:@"JobIndexVideoFramerate"] intValue] == 0) { - if ([[item objectForKey:@"VideoframerateMode"] isEqualToString:@"vfr"]) + if ([[item objectForKey:@"VideoFramerateMode"] isEqualToString:@"vfr"]) { /* we are using same as source with vfr detelecine */ videoInfo = [NSString stringWithFormat:@"%@ Framerate: Same as source (Variable Frame Rate)", videoInfo]; @@ -1260,7 +1260,7 @@ return ![(HBQueueOutlineView*)outlineView isDragging]; else { /* we have a specified, constant framerate */ - if ([[item objectForKey:@"VideoframerateMode"] isEqualToString:@"pfr"]) + if ([[item objectForKey:@"VideoFramerateMode"] isEqualToString:@"pfr"]) { videoInfo = [NSString stringWithFormat:@"%@ Framerate: %@ (Peak Frame Rate)", videoInfo ,[item objectForKey:@"VideoFramerate"]]; } |